<body> entfernt.
[kivitendo-erp.git] / templates / webpages / am / lead_list.html
1 [%- USE T8 %]
2 [%- USE HTML %]
3 [%- USE LxERP %]
4 [%- USE L %]
5
6 <table width=100%>
7   <tr>
8     <th class=listtop>[% title | html %]</th>
9   </tr>
10   <tr height="5"></tr>
11   <tr class=listheading>
12     <th class=listheading width=100%>[% 'Description' | $T8 %]</th>
13   </tr>
14 [%- FOREACH row = ALL  %]
15   <tr valign=top class=listrow[% loop.count % 2 %]>
16     <td><a href="am.pl?action=edit_lead&id=[% row.id | html %]&callback=[% callback | html %]">[% row.lead | html %]</a></td>
17   </tr>
18 [%- END %]
19   <tr>
20   <td><hr size=3 noshade></td>
21   </tr>
22 </table>
23
24 <br>
25 <form method=post action=am.pl>
26
27 <input name=callback type=hidden value="[% callback | html %]">
28 <input type=hidden name=type value=lead>
29 <input class=submit type=submit name=action value="[% 'Add' | $T8 %]">
30
31   </form>
32