openrat-cms

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

show.tpl.src.xml (1033B)


      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 class="headline">
      4       <column>
      5         <text value="${message:name}"/>
      6       </column>
      7     </row>
      8     <list list="${templates}" extract="true">
      9       <row class="data">
     10         <column class="act-clickable">
     11           <image action="template"/>
     12           <link type="open" id="${id}" name="${name}" action="template">
     13             <text value="${name}"/>
     14           </link>
     15         </column>
     16       </row>
     17     </list>
     18     <if empty="${templates}">
     19       <row>
     20         <text value="${message:NO_TEMPLATES_AVAILABLE_DESC}"/>
     21       </row>
     22     </if>
     23     <row class="data">
     24       <column colspan="1" class="act-clickable">
     25         <link type="dialog" subaction="add">
     26           <image method="add"/>
     27           <text value="${message:add}"/>
     28         </link>
     29       </column>
     30     </row>
     31   </table>
     32 </output>