openrat-cms

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

content.tpl.src.xml (2114B)


      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 class="help">
      6 				<text key="GLOBAL_TYPE"></text>
      7 				<text raw="_/_"></text>
      8 				<text key="GLOBAL_NAME"></text>
      9 			</column>
     10 			<column class="help">
     11 				<text key="GLOBAL_LASTCHANGE"></text>
     12 			</column>
     13 		</row>
     14 		<if present="up_url">
     15 			<row class="data">
     16 				<column url="var:up_url">
     17 					<image type="folder"></image>
     18 					<text raw=".."></text>
     19 				</column>
     20 				<column>
     21 					<text raw=""></text>
     22 				</column>
     23 			</row>
     24 		</if>
     25 		<list list="object" extract="true">
     26 			<row class="data">
     27 				<column  id="var:id" name="var:name" action="var:type" title="var:desc" class="var:class">
     28 					<image type="var:icon"></image>
     29 					<text var="name"></text>
     30 					<text raw="_"></text>
     31 				</column>
     32 				<column>
     33 					<date date="var:date"></date>
     34 				</column>
     35 			</row>
     36 		</list>
     37 		<if empty="object">
     38 			<row>
     39 				<column colspan="2">
     40 					<text text="GLOBAL_NOT_FOUND"></text>
     41 				</column>
     42 			</row>
     43 		</if>
     44 		<row class="data">
     45 			<column colspan="2">
     46 				<link type="view" action="folder" subaction="createfolder">
     47 					<image file="icon/create"></image>
     48 					<text key="menu_folder_createfolder"></text>
     49 				</link>
     50 			</column>
     51 		</row>
     52 		<row class="data">
     53 			<column colspan="2">
     54 				<link type="view" action="folder" subaction="createpage">
     55 					<image file="icon/create"></image>
     56 					<text key="menu_folder_createpage"></text>
     57 				</link>
     58 			</column>
     59 		</row>
     60 		<row class="data">
     61 			<column colspan="2">
     62 				<link type="view" action="folder" subaction="createfile">
     63 					<image file="icon/create"></image>
     64 					<text key="menu_folder_createfile"></text>
     65 				</link>
     66 			</column>
     67 		</row>
     68 		<row class="data">
     69 			<column colspan="2">
     70 				<link type="modal" action="folder" subaction="createlink">
     71 					<image file="icon/create"></image>
     72 					<text key="menu_folder_createlink"></text>
     73 				</link>
     74 			</column>
     75 		</row>
     76 	</table>
     77 </output>