Projekt

Allgemein

Profil

Herunterladen (2,57 KB) Statistiken
| Zweig: | Markierung: | Revision:
dfee9199 Sven Schöling
[%- USE T8 %]
46bc75c8 Thomas Heck
[%- USE L %]
7a7f33b5 Moritz Bunkus
[% USE HTML %]
<body onload="on_load()">

<script type="text/javascript">
<!--
function on_load() {
document.Form.subject.focus();
}
-->
</script>

<div class="listtop">[% title %]</div>

<form action="fu.pl" method="post" name="Form">
<input type="hidden" name="nextsub" value="report">

<p>
<table>
<tr>
dfee9199 Sven Schöling
<td align="right">[% 'Created for' | $T8 %]</td>
7a7f33b5 Moritz Bunkus
<td>
<select name="created_for">
<option></option>
[%- FOREACH row = EMPLOYEES %]
<option value="[% HTML.escape(row.id) %]">
[%- IF row.name %]
[%- HTML.escape(row.name) %] ([% HTML.escape(row.login) %])
[%- ELSE %]
[%- HTML.escape(row.login) %]
[%- END %]
</option>
[%- END %]
</select>
</td>
</tr>

<tr>
dfee9199 Sven Schöling
<td align="right">[% 'Subject' | $T8 %]</td>
7a7f33b5 Moritz Bunkus
<td><input name="subject" size="20"></td>
</tr>

<tr>
dfee9199 Sven Schöling
<td align="right">[% 'Body' | $T8 %]</td>
7a7f33b5 Moritz Bunkus
<td><input name="body" size="20"></td>
</tr>

<tr>
dfee9199 Sven Schöling
<td align="right">[% 'Reference' | $T8 %]</td>
7a7f33b5 Moritz Bunkus
<td><input name="reference" size="20"></td>
</tr>

<tr>
dfee9199 Sven Schöling
<td align="right">[% 'Follow-Up Date' | $T8 %]</td>
7a7f33b5 Moritz Bunkus
<td>
dfee9199 Sven Schöling
[% 'From' | $T8 %]
46bc75c8 Thomas Heck
[% L.date_tag('follow_up_date_from') %]
dfee9199 Sven Schöling
[% 'To (time)' | $T8 %]
46bc75c8 Thomas Heck
[% L.date_tag('follow_up_date_to') %]
7a7f33b5 Moritz Bunkus
</td>
</tr>

<tr>
dfee9199 Sven Schöling
<td align="right">[% 'Created on' | $T8 %]</td>
7a7f33b5 Moritz Bunkus
<td>
dfee9199 Sven Schöling
[% 'From' | $T8 %]
46bc75c8 Thomas Heck
[% L.date_tag('itime_from') %]
dfee9199 Sven Schöling
[% 'To (time)' | $T8 %]
46bc75c8 Thomas Heck
[% L.date_tag('itime_to') %]
7a7f33b5 Moritz Bunkus
</td>
</tr>

<tr>
dfee9199 Sven Schöling
<td align="right">[% 'Include in Report' | $T8 %]</td>
7a7f33b5 Moritz Bunkus
<td>

<table>
<tr>
<td>
<input type="checkbox" name="due_only" id="due_only" value="1" checked>
dfee9199 Sven Schöling
<label for="due_only">[% 'Only due follow-ups' | $T8 %]</label>
7a7f33b5 Moritz Bunkus
</td>

<td>
<input type="checkbox" name="all_users" id="all_users" value="1" checked>
6fb1cf98 Sven Schöling
<label for="all_users">[% 'Other users\' follow-ups' | $T8 %]</label>
7a7f33b5 Moritz Bunkus
</td>
</tr>

<tr>
<td>
<input type="checkbox" name="not_done" id="not_done" value="1" checked>
dfee9199 Sven Schöling
<label for="not_done">[% 'Not done yet' | $T8 %]</label>
7a7f33b5 Moritz Bunkus
</td>

<td>
<input type="checkbox" name="done" id="done" value="1">
dfee9199 Sven Schöling
<label for="done">[% 'Done' | $T8 %]</label>
7a7f33b5 Moritz Bunkus
</td>
</tr>
</table>

</td>
</tr>

</table>
</p>

<p>
dfee9199 Sven Schöling
<input type="submit" name="action" value="[% 'Continue' | $T8 %]">
7a7f33b5 Moritz Bunkus
</p>
</form>