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