1 [% USE HTML %][% USE T8 %][% USE L %][% USE LxERP %]
2 <h1>[% FORM.title %]</h1>
4 [%- INCLUDE 'common/flash.html' %]
6 <form method="post" action="controller.pl">
7 [% IF !DEPARTMENTS.size %]
9 [%- 'No department has been created yet.' | $T8 %]
13 <table id="department_list" width="100%">
15 <tr class="listheading">
16 <th width="100%">[%- 'Description' | $T8 %]</th>
21 [%- FOREACH department = DEPARTMENTS %]
22 <tr class="listrow[% loop.count % 2 %]" id="department_id_[% department.id %]">
24 <a href="[% SELF.url_for(action => 'edit', id => department.id) %]">
25 [%- HTML.escape(department.description) %]
37 <a href="[% SELF.url_for(action => 'new') %]">[%- 'Create new department' | $T8 %]</a>