openrat-cms

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

memberships.tpl.src.xml (665B)


      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:name}"/>
      6       </column>
      7     </row>
      8     <if empty="groups">
      9       <row class="data">
     10         <column>
     11           <text value="${message:NOT_FOUND}"/>
     12         </column>
     13       </row>
     14     </if>
     15     <list list="groups" value="group">
     16       <row class="data">
     17         <column>
     18           <text value="${group}"/>
     19         </column>
     20       </row>
     21     </list>
     22   </table>
     23 </output>