openrat-cms

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

history.tpl.src.xml (1104B)


      1 <output xmlns="http://www.openrat.de/template" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.openrat.de/template ../../../../../../../template_engine/components/template.xsd">
      2   <table>
      3     <row header="true">
      4       <column>
      5         <text value="${message:project}"/>
      6       </column>
      7       <column>
      8         <text value="${message:filename}"/>
      9       </column>
     10       <column>
     11         <text value="${message:user_username}"/>
     12       </column>
     13       <column>
     14         <text value="${message:lastchange}"/>
     15       </column>
     16     </row>
     17     <list list="${timeline}" extract="true">
     18       <row class="data">
     19         <column class="act-clickable">
     20           <link type="open" action="project" id="${projectid}">
     21             <text value="${projectname}"/>
     22           </link>
     23         </column>
     24         <column>
     25           <text value="${filename}" maxlength="30"/>
     26         </column>
     27         <column>
     28           <text value="${username}"/>
     29         </column>
     30         <column>
     31           <date date="${lastchange_date}"/>
     32         </column>
     33       </row>
     34     </list>
     35   </table>
     36 </output>