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