openrat-cms

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

listing.tpl.src.xml (745B)


      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 url="${url}">
     11           <text value="${name}"/>
     12         </column>
     13       </row>
     14     </list>
     15   </table>
     16   <if empty="${templates}">
     17     <text value="${message:NO_TEMPLATES_AVAILABLE_DESC}"/>
     18   </if>
     19   <link class="action" action="template" subaction="add">
     20     <text value="${message:menu_template_add}"/>
     21   </link>
     22 </output>