1 [% USE HTML %][% USE T8 %][% USE L %][% USE LxERP %]
3 <div class="listtop">[% FORM.title %]</div>
5 [%- INCLUDE 'common/flash.html' %]
7 <form method="post" action="controller.pl">
8 [% IF !DEPARTMENTS.size %]
10 [%- 'No department has been created yet.' | $T8 %]
14 <table id="department_list" width="100%">
16 <tr class="listheading">
17 <th width="100%">[%- 'Description' | $T8 %]</th>
22 [%- FOREACH department = DEPARTMENTS %]
23 <tr class="listrow[% loop.count % 2 %]" id="department_id_[% department.id %]">
25 <a href="[% SELF.url_for(action => 'edit', id => department.id) %]">
26 [%- HTML.escape(department.description) %]
38 <a href="[% SELF.url_for(action => 'new') %]">[%- 'Create new department' | $T8 %]</a>