folders.html

 1   <div class="row-fluid" >
 2   	<div class="span12" >
 3   		<fieldset>
 4   		<legend>
 5   			#i18n{folderlisting.folders.tableLabel}
 6   			<form class="form-inline pull-right" action="jsp/admin/plugins/folderlisting/CreateFolder.jsp">
 7   				<button class="btn btn-primary btn-small" type="submit" >
 8   					<i class="icon-plus icon-white"></i>&nbsp;#i18n{folderlisting.folders.buttonAddFolder}
 9   				</button>
 10   			</form>
 11   		</legend>
 12   		<@paginationAdmin paginator=paginator combo=1/>
 13           <table class="table table-striped table-condensed" summary="#i18n{folderlisting.folders.tableSummary}">
 14   			<tr>
 15   				<th>#i18n{folderlisting.folders.columnTitleName}</th>
 16   				<th>#i18n{folderlisting.folders.columnTitlePath}</th>
 17   				<th>#i18n{folderlisting.folders.columnTitleWorkgroup}</th>
 18   				<th>#i18n{folderlisting.folders.columnTitleAction}</th>
 19   			</tr>
 20   			<#list folder_list as folder >
 21   			<tr>
 22   				<td>${folder.folderName}</td>
 23   				<td>${folder.folderPath}</td>
 24   				<td>${folder.workgroup}</td>
 25   				<td>
 26   					<a class="btn btn-primary btn-small" href="jsp/admin/plugins/folderlisting/ModifyFolder.jsp?id_folder=${folder.id}"  title="#i18n{folderlisting.folders.labelEdit}" >
 27   						<i class="icon-edit icon-white"></i>
 28   					</a>
 29   					<a class="btn btn-danger btn-small" href="jsp/admin/plugins/folderlisting/DoConfirmDeleteFolder.jsp?id_folder=${folder.id}"  title="#i18n{folderlisting.folders.labelDelete}" >
 30   						<i class="icon-trash icon-white"></i>
 31   					</a>
 32   				</td>
 33   			</tr>	
 34   			</#list>
 35           </table>
 36   		</fieldset>
 37   	</div>
 38   </div>