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