openrat-cms

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

history.tpl.src.xml (2958B)


      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 method="get" subaction="diff" label="message:compare"
      4 		cancel="false" visible="true">
      5 		<table widths="5%,5%,5%,15%,15%,35%,10%,10%">
      6 			<row class="headline">
      7 				<column class="help">
      8 					<text text="GLOBAL_NR"></text>
      9 				</column>
     10 				<column class="help" colspan="2">
     11 					<if present="compareid">
     12 						<text text="GLOBAL_COMPARE"></text>
     13 					</if>
     14 					<else>
     15 						<text raw="_" />
     16 					</else>
     17 				</column>
     18 				<column class="help">
     19 					<text text="DATE"></text>
     20 				</column>
     21 				<column class="help">
     22 					<text text="GLOBAL_USER"></text>
     23 				</column>
     24 				<column class="help">
     25 					<text text="GLOBAL_VALUE"></text>
     26 				</column>
     27 				<column class="help">
     28 					<text text="GLOBAL_STATE"></text>
     29 				</column>
     30 				<column class="help">
     31 					<text text="GLOBAL_ACTION"></text>
     32 				</column>
     33 			</row>
     34 			<if empty="el">
     35 				<row>
     36 					<column colspan="8">
     37 						<text text="GLOBAL_NOT_FOUND"></text>
     38 					</column>
     39 				</row>
     40 			</if>
     41 			<list list="el" extract="true">
     42 				<row class="data">
     43 					<column>
     44 						<text var="lfd_nr"></text>
     45 					</column>
     46 					<column>
     47 						<if present="compareid">
     48 							<radio name="compareid" value="var:id"></radio>
     49 						</if>
     50 						<else>
     51 							<text raw="_" />
     52 						</else>
     53 					</column>
     54 					<column>
     55 						<if present="compareid">
     56 							<radio name="withid" value="var:id"></radio>
     57 						</if>
     58 						<else>
     59 							<text raw="_" />
     60 						</else>
     61 					</column>
     62 					<column>
     63 						<date date="var:date"></date>
     64 					</column>
     65 					<column>
     66 						<text var="user"></text>
     67 					</column>
     68 					<column>
     69 						<text var="value"></text>
     70 					</column>
     71 					<if true="var:public">
     72 						<column>
     73 							<text key="GLOBAL_PUBLIC" type="strong"></text>
     74 						</column>
     75 					</if>
     76 					<else>
     77 						<if present="releaseUrl">
     78 							<column class="clickable">
     79 								<link type="post" subaction="release" var1="valueid"
     80 									value1="var:valueid" id="var:objectid" title="message:GLOBAL_RELEASE_DESC">
     81 									<text key="GLOBAL_RELEASE" type="strong"></text>
     82 								</link>
     83 							</column>
     84 						</if>
     85 						<else>
     86 							<column>
     87 								<text key="GLOBAL_INACTIVE" type="emphatic" />
     88 							</column>
     89 						</else>
     90 					</else>
     91 					<if true="var:active">
     92 						<column>
     93 							<text key="GLOBAL_ACTIVE" type="emphatic"></text>
     94 						</column>
     95 					</if>
     96 					<else>
     97 						<if present="useUrl">
     98 							<column class="clickable">
     99 								<link type="post" subaction="use" var1="valueid" value1="var:valueid"
    100 									id="var:objectid" title="message:GLOBAL_USE_DESC">
    101 									<text key="GLOBAL_USE"></text>
    102 								</link>
    103 							</column>
    104 						</if>
    105 						<else>
    106 							<column>
    107 							</column>
    108 						</else>
    109 					</else>
    110 				</row>
    111 			</list>
    112 		</table>
    113 	</form>
    114 </output>