openrat-cms

# OpenRat Content Management System
git clone http://git.code.weiherhei.de/openrat-cms.git
Log | Files | Refs

edit.tpl.src.xml (1515B)


      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 	<table>
      4 		<row class="headline">
      5 			<column header="true">
      6 				<text key="TYPE"></text>
      7 			</column>
      8 			<column header="true">
      9 				<text key="NAME"></text>
     10 			</column>
     11 			<column header="true">
     12 				<text key="LASTCHANGE"></text>
     13 			</column>
     14 		</row>
     15 		<if present="up_url">
     16 			<row class="data clickable">
     17 				<column>
     18 					<link type="open" id="var:parentid" name="" action="folder">
     19 						<image action="folder"></image>
     20 						<text value=".." />
     21 					</link>
     22 				</column>
     23 				<column>
     24 					<text raw=""></text>
     25 				</column>
     26 			</row>
     27 		</if>
     28 		<list list="object" extract="true">
     29 			<row class="data clickable">
     30 				<column class="">
     31 					<image action="var:icon"></image>
     32 				</column>
     33 				<column class="">
     34 					<link type="open" id="var:id" name="var:name" action="var:type" title="var:desc">
     35 						<text var="name"></text>
     36 						<text raw="_"></text>
     37 					</link>
     38 				</column>
     39 				<column>
     40 					<date date="var:date"></date>
     41 				</column>
     42 			</row>
     43 		</list>
     44 		<if empty="object">
     45 			<row>
     46 				<column colspan="2">
     47 					<text text="GLOBAL_NOT_FOUND"></text>
     48 				</column>
     49 			</row>
     50 		</if>
     51 	</table>
     52 
     53 	<part class="clickable">
     54 
     55 		<link type="dialog" action="folder" subaction="create" class="or-link-btn">
     56 			<image action="new" />
     57 			<text key="new"></text>
     58 		</link>
     59 	</part>
     60 </output>