openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

order.tpl.src.xml (1234B)


      1 <output xmlns="http://www.openrat.de/template" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      2 		xsi:schemaLocation="http://www.openrat.de/template ../../../../../../../template_engine/components/template.xsd">
      3 	<form>
      4 		<table class="table--sortable">
      5 			<row header="true">
      6 				<!--
      7 			  <column class="help">
      8 				<text value="${message:FOLDER_ORDER}"/>
      9 			  </column>-->
     10 				<column class="help">
     11 					<text value="${message:TYPE}"/>
     12 				</column>
     13 				<column class="help">
     14 					<text value="${message:NAME}"/>
     15 				</column>
     16 				<column class="help">
     17 					<text value="${message:FILENAME}"/>
     18 				</column>
     19 				<column class="help">
     20 					<text value="${message:LASTCHANGE}"/>
     21 				</column>
     22 			</row>
     23 			<list list="${object}" extract="true">
     24 				<row class="data" id="${id}">
     25 					<!--<column>
     26 					  <text value=" "/>
     27 					</column>-->
     28 					<column>
     29 						<image action="${icon}"/>
     30 						<text class="sort-value" value="${message:${icon}}"/>
     31 					</column>
     32 					<column>
     33 						<text value="${name}"/>
     34 					</column>
     35 					<column>
     36 						<text value="${filename}"/>
     37 					</column>
     38 					<column>
     39 						<date date="${date}"/>
     40 					</column>
     41 				</row>
     42 			</list>
     43 		</table>
     44 		<hidden name="order" default=""/>
     45 	</form>
     46 </output>