Umstellung der Benutzerverwaltung von Dateien im Verzeichnis "users" auf die Verwendu...
[kivitendo-erp.git] / templates / webpages / generic / select_project_de.html
1 [% USE HTML %]<body [% IF onload %]onload="[% onload %]"[% END %]>
2
3  <form method="post" action="[% HTML.escape(script) %]">
4
5   <input type="hidden" name="nextsub" value="[% HTML.escape(nextsub) %]">
6   <input type="hidden" name="callback_sub" value="[% HTML.escape(callback_sub) %]">
7   <input type="hidden" name="prefix" value="[% HTML.escape(prefix) %]">
8
9   <input type="hidden" name="old_form" value="[% HTML.escape(old_form) %]">
10
11   <div class="listtop">Projekt ausw&auml;hlen</div>
12
13   <p>
14    <table>
15     <tr>
16      <td>
17       <table>
18        <tr>
19         <th class="listheading">&nbsp;</th>
20         <th class="listheading">Projektnummer</th>
21         <th class="listheading">Beschreibung</th>
22        </tr>
23
24        [% FOREACH PROJECTS %]
25        <tr class="listrow[% IF loop.count % 2 %]1[% ELSE %]0[% END %]">
26         <td>
27          <input type="hidden" name="new_id_[% loop.count %]" value="[% HTML.escape(id) %]">
28          <input type="hidden" name="new_number_[% loop.count %]" value="[% HTML.escape(projectnumber) %]">
29          <input type="hidden" name="new_description_[% loop.count %]" value="[% HTML.escape(description) %]">
30          <input type="radio" name="selection" value="[% loop.count %]" [% IF loop.first %]checked[% END %]>
31         </td>
32         <td>[% HTML.escape(projectnumber) %]</td>
33         <td>[% HTML.escape(description) %]</td>
34        </tr>
35        [% END %]
36       </table>
37      </td>
38     </tr>
39    </table>
40   </p>
41
42   <input type="submit" class="submit" name="action" value="Weiter">
43  </form>
44
45 </body>
46 </html>