imageFileSearch.html.svn-base 2.68 KB
Newer Older
Kim Gyeongeun committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
#set($title = "画像・ドキュメントファイル一覧")
#set($menukubun = "5")
#parse( "/WEB-INF/view/common/header_admin.vm" )

<script language="JavaScript" type="text/JavaScript">
    <!--
    function fileDelete(fileManageId){
    	if(confirm('削除しますか?')){
//    		alert("削除しました。");
	    	location.href="#q('/admin/setting/imageFileRegist/fileDelete/?fileManageId=')"+fileManageId;
    	}
    }
    -->
</script>

<div id="contents">
<div id="contents_main">

<div id="breadcrumbsWrap">

</div><!--[ /breadcrumbsWrap ]-->

<div id="main" class="clearfix">

<h2 class="contents_title">画像・ドキュメントファイル一覧</h2>

<div id="right_contents">
<form method="POST" action="#q('/admin/setting/imageFileRegist/imageFileRegist/')" >
$!tools.getMsgs()

<table border="0" cellpadding="0" cellspacing="0" class="stripe">
	<thead>
		<tr>
			<th class="w250 t_center">ファイル名</th>
			<th class="w300 t_center">メモ</th>
			<th class="w150 t_center">アップロード日時</th>
			<th class="w144 t_center">削除</th>
		</tr>
	</thead>

#if($!imageFileRegistForm.searchResultList.size() > 0)
	<h3 class="table_title">画像・ドキュメントファイル一覧</h3>
	■該当件数  $!{imageFileRegistForm.pagingMap.paging.totalCnt}件中 &nbsp;&nbsp;$!{imageFileRegistForm.pagingMap.paging.firstIndex} ~ $!{imageFileRegistForm.pagingMap.paging.lastIndex}件
<tbody>
    #foreach($searchResult in $!imageFileRegistForm.searchResultList)
	<tr class="white">
	<td><a href="#q('/docs/')$!searchResult.fileName" target="_blank">$!escape.html($!searchResult.fileName)</a></td>
	<td>$!escape.html($!searchResult.memo)&nbsp;</td>
	<td class="t_center">$date.format("yyyy/MM/dd HH:mm:ss",$!searchResult.uploadDate)</td>
	<td class="t_center">
	<a href='#' onclick="fileDelete($!{searchResult.fileManageId})"><img src="/em/images//enq_01_btn_05_off.gif" width="30" height="20" alt="削除" /></a>
	</td>
	</tr>
	#end
</tbody>
</table>

#else

	<tbody>
	<tr #if($!velocityCount % 2 == 0) class="white dot_line" #else class="gray" #end>
		<td class="dot_line" colspan="4" align="center">ファイルが登録されていません。</td>
	</tr>
	</tbody>

</table>
#end

<!--▼ページング▼-->
<ul class="pageNav01">
#makeLink("#q('/admin/setting/imageFileRegist/fileSearch/')",$imageFileRegistForm.pagingMap.paging)
</ul>
<!--▲ページング▲-->

<div class="btn_area2">
	<input type="submit" name="button" class="button" value="アップロード" / class="fm01">
</div>
</form>

</div>
</div>
<div id="contents_bottom">
<img src="/em/images/bg_contents_bottom.jpg" width="1036" height="15" /> </div> </div>
</div>
</div>
</div>

#parse( "/WEB-INF/view/common/footer_admin.vm" )