epic-ts
[kivitendo-erp.git] / templates / webpages / department / list.html
1 [% USE HTML %][% USE T8 %][% USE L %][% USE LxERP %]
2 <h1>[% FORM.title %]</h1>
3
4 [%- INCLUDE 'common/flash.html' %]
5
6  <form method="post" action="controller.pl">
7   [% IF !DEPARTMENTS.size %]
8    <p>
9     [%- 'No department has been created yet.' | $T8 %]
10    </p>
11
12   [%- ELSE %]
13    <table id="department_list" width="100%">
14     <thead>
15     <tr class="listheading">
16      <th width="100%">[%- 'Description' | $T8 %]</th>
17     </tr>
18     </thead>
19
20     <tbody>
21     [%- FOREACH department = DEPARTMENTS %]
22     <tr class="listrow[% loop.count % 2 %]" id="department_id_[% department.id %]">
23      <td>
24       <a href="[% SELF.url_for(action => 'edit', id => department.id) %]">
25        [%- HTML.escape(department.description) %]
26       </a>
27      </td>
28     </tr>
29     [%- END %]
30     </tbody>
31    </table>
32   [%- END %]
33
34   <hr size="3" noshade>
35
36   <p>
37    <a href="[% SELF.url_for(action => 'new') %]">[%- 'Create new department' | $T8 %]</a>
38   </p>
39  </form>