Revision 5166e0b1
Von Hans P. Schlaepfer vor fast 5 Jahren hinzugefügt
templates/webpages/fu/add_edit.html | ||
---|---|---|
3 | 3 |
[% USE HTML %] |
4 | 4 |
<h1>[% title %]</h1> |
5 | 5 |
|
6 |
<script type="text/javascript">
|
|
7 |
$(function(){ document.Form.subject.focus(); });
|
|
8 |
</script>
|
|
6 |
<script type="text/javascript"> |
|
7 |
$(function(){ document.Form.subject.focus(); }); |
|
8 |
</script> |
|
9 | 9 |
|
10 |
<form action="fu.pl" method="post" name="Form" id="form"> |
|
10 |
<div class="wrapper"> |
|
11 |
<form action="fu.pl" method="post" name="Form" id="form"> |
|
11 | 12 |
|
12 |
[%- IF SAVED_MESSAGE %]
|
|
13 |
[% IF SAVED_MESSAGE %]
|
|
13 | 14 |
<p>[% SAVED_MESSAGE %]</p> |
14 |
[%- END %]
|
|
15 |
[% END %]
|
|
15 | 16 |
|
16 |
<input type="hidden" name="id" value="[% HTML.escape(id) %]">
|
|
17 |
<input type="hidden" name="note_id" value="[% HTML.escape(note_id) %]">
|
|
18 |
<input type="hidden" name="callback" value="[% HTML.escape(callback) %]">
|
|
19 |
<input type="hidden" name="POPUP_MODE" value="[% HTML.escape(POPUP_MODE) %]">
|
|
17 |
<input type="hidden" name="id" value="[% HTML.escape(id) %]"> |
|
18 |
<input type="hidden" name="note_id" value="[% HTML.escape(note_id) %]"> |
|
19 |
<input type="hidden" name="callback" value="[% HTML.escape(callback) %]"> |
|
20 |
<input type="hidden" name="POPUP_MODE" value="[% HTML.escape(POPUP_MODE) %]"> |
|
20 | 21 |
|
21 |
<p> |
|
22 |
<table> |
|
23 |
<tr> |
|
24 |
<td valign="top">[% 'Follow-Up for user' | $T8 %]</td> |
|
25 |
<td valign="top"> |
|
26 |
<select name="created_for_user"> |
|
27 |
[%- FOREACH row = EMPLOYEES %] |
|
28 |
<option value="[% HTML.escape(row.id) %]"[% IF created_for_user == row.id %] selected[% END %]> |
|
29 |
[%- IF row.name %][% HTML.escape(row.name) %] ([% HTML.escape(row.login) %])[% ELSE %][% HTML.escape(row.login) %][% END %] |
|
30 |
</option> |
|
31 |
[%- END %] |
|
22 |
|
|
23 |
<table class="tbl-horizontal"> |
|
24 |
<tbody> |
|
25 |
<tr> |
|
26 |
<th>[% 'Follow-Up for user' | $T8 %]</th> |
|
27 |
<td> |
|
28 |
<select name="created_for_user" class="wi-wider"> |
|
29 |
[% FOREACH row = EMPLOYEES %] |
|
30 |
<option value="[% HTML.escape(row.id) %]"[% IF created_for_user== row.id %] selected[% END %]> |
|
31 |
[% IF row.name %][% HTML.escape(row.name) %] ([% HTML.escape(row.login) %])[% ELSE %][% HTML.escape(row.login) %][% END %] |
|
32 |
</option> |
|
33 |
[% END %] |
|
32 | 34 |
</select> |
33 |
</td> |
|
34 |
</tr> |
|
35 |
</td> |
|
36 |
</tr> |
|
37 |
<tr> |
|
38 |
<th>[% 'Follow-Up Date' | $T8 %]</th> |
|
39 |
<td>[% L.date_tag('follow_up_date', follow_up_date) %]</td> |
|
40 |
</tr> |
|
41 |
<tr> |
|
42 |
<th>[% 'Subject' | $T8 %]</th> |
|
43 |
<td><input type="text" name="subject" value="[% HTML.escape(subject) %]" class="wi-wider"></td> |
|
44 |
</tr> |
|
45 |
<tr> |
|
46 |
<th>[% 'Body' | $T8 %]</th> |
|
47 |
<td><textarea class="wi-wider" rows="10" name="body">[% HTML.escape(body) %]</textarea> |
|
48 |
</td> |
|
49 |
</tr> |
|
50 |
</tbody> |
|
51 |
</table> |
|
35 | 52 |
|
36 |
<tr> |
|
37 |
<td valign="right">[% 'Follow-Up Date' | $T8 %]</td> |
|
38 |
<td> |
|
39 |
[% L.date_tag('follow_up_date', follow_up_date) %] |
|
40 |
</tr> |
|
41 | 53 |
|
42 |
<tr> |
|
43 |
<td valign="right">[% 'Subject' | $T8 %]</td> |
|
44 |
<td><input name="subject" value="[% HTML.escape(subject) %]" size="50"></td> |
|
45 |
</tr> |
|
46 | 54 |
|
55 |
[% IF POPUP_MODE %] |
|
56 |
<div class="buttons"> |
|
57 |
<input type="hidden" name="action" value="dispatcher"> |
|
58 |
<input type="submit" name="action_save" value="[% 'Save' | $T8 %]"> |
|
59 |
[% IF id %] |
|
60 |
<input type="submit" name="action_finish" value="[% 'Finish' | $T8 %]"> |
|
61 |
<input type="submit" name="action_delete" value="[% 'Delete' | $T8 %]"> |
|
62 |
[% END %] |
|
63 |
<input type="submit" onclick="window.close()" value="[% 'Cancel' | $T8 %]"> |
|
64 |
</div> |
|
65 |
|
|
66 |
[% IF FOLLOW_UPS.size %] |
|
67 |
|
|
68 |
<h2>[% 'Existing pending follow-ups for this item' | $T8 %]</h2> |
|
69 |
|
|
70 |
<table class="tbl-list"> |
|
71 |
<thead> |
|
47 | 72 |
<tr> |
48 |
<td valign="right" align="top">[% 'Body' | $T8 %]</td> |
|
49 |
<td align="top"><textarea cols="50" rows="10" name="body">[% HTML.escape(body) %]</textarea></td> |
|
50 |
</tr> |
|
51 |
</table> |
|
52 |
</p> |
|
53 |
|
|
54 |
[%- IF POPUP_MODE %] |
|
55 |
<p> |
|
56 |
<input type="hidden" name="action" value="dispatcher"> |
|
57 |
<input type="submit" class="submit" name="action_save" value="[% 'Save' | $T8 %]"> |
|
58 |
[%- IF id %] |
|
59 |
<input type="submit" class="submit" name="action_finish" value="[% 'Finish' | $T8 %]"> |
|
60 |
<input type="submit" class="submit" name="action_delete" value="[% 'Delete' | $T8 %]"> |
|
61 |
[%- END %] |
|
62 |
<input type="submit" class="submit" onclick="window.close()" value="[% 'Cancel' | $T8 %]"> |
|
63 |
</p> |
|
64 |
|
|
65 |
[%- IF FOLLOW_UPS.size %] |
|
66 |
<hr height="3" noshade> |
|
67 |
|
|
68 |
<h2>[% 'Existing pending follow-ups for this item' | $T8 %]</h2> |
|
69 |
|
|
70 |
<p> |
|
71 |
<table> |
|
72 |
<tr> |
|
73 |
<th class="listheading">[% 'Follow-Up Date' | $T8 %]</th> |
|
74 |
<th class="listheading">[% 'Subject' | $T8 %]</th> |
|
75 |
<th class="listheading">[% 'Created by' | $T8 %]</th> |
|
76 |
<th class="listheading">[% 'Follow-up for' | $T8 %]</th> |
|
73 |
<th>[% 'Follow-Up Date' | $T8 %]</th> |
|
74 |
<th>[% 'Subject' | $T8 %]</th> |
|
75 |
<th>[% 'Created by' | $T8 %]</th> |
|
76 |
<th>[% 'Follow-up for' | $T8 %]</th> |
|
77 | 77 |
</tr> |
78 |
|
|
79 |
[%- FOREACH row = FOLLOW_UPS %] |
|
78 |
</thead> |
|
79 |
<tbody> |
|
80 |
[% FOREACH row = FOLLOW_UPS %] |
|
80 | 81 |
<tr class="listrow[% loop.count % 2 %]"> |
81 |
<td valign="top">[% HTML.escape(row.follow_up_date) %]</td>
|
|
82 |
<td valign="top"><a href="fu.pl?action=edit&id=[% HTML.escape(row.id) %][% IF POPUP_MODE %]&POPUP_MODE=1[% END %]">[% HTML.escape(row.subject) %]</a></td>
|
|
83 |
<td valign="top">[% HTML.escape(row.created_by_name) %]</td>
|
|
84 |
<td valign="top">[% HTML.escape(row.created_for_user_name) %]</td>
|
|
82 |
<td>[% HTML.escape(row.follow_up_date) %]</td>
|
|
83 |
<td><a href="fu.pl?action=edit&id=[% HTML.escape(row.id) %][% IF POPUP_MODE %]&POPUP_MODE=1[% END %]">[% HTML.escape(row.subject) %]</a></td>
|
|
84 |
<td>[% HTML.escape(row.created_by_name) %]</td>
|
|
85 |
<td>[% HTML.escape(row.created_for_user_name) %]</td>
|
|
85 | 86 |
</tr> |
86 |
[%- END %] |
|
87 |
</table> |
|
88 |
</p> |
|
89 |
[%- END %] |
|
90 |
[%- END %] |
|
87 |
[% END %] |
|
88 |
</tbody> |
|
89 |
</table> |
|
90 |
|
|
91 |
[% END %] |
|
92 |
[% END %] |
|
91 | 93 |
|
92 |
[%- FOREACH row = LINKS %]
|
|
94 |
[% FOREACH row = LINKS %]
|
|
93 | 95 |
<input type="hidden" name="trans_id_[% loop.count %]" value="[% HTML.escape(row.trans_id) %]"> |
94 | 96 |
<input type="hidden" name="trans_type_[% loop.count %]" value="[% HTML.escape(row.trans_type) %]"> |
95 | 97 |
<input type="hidden" name="trans_info_[% loop.count %]" value="[% HTML.escape(row.trans_info) %]"> |
96 |
[%- END %] |
|
98 |
[% END %] |
|
99 |
|
|
100 |
<input type="hidden" name="trans_rowcount" value="[% LINKS.size %]"> |
|
97 | 101 |
|
98 |
<input type="hidden" name="trans_rowcount" value="[% LINKS.size %]"> |
|
99 |
</form> |
|
102 |
</form> |
|
103 |
</div><!-- /.wrapper --> |
templates/webpages/fu/edit_access_rights.html | ||
---|---|---|
1 | 1 |
[% USE T8 %] |
2 | 2 |
[% USE HTML %] |
3 |
|
|
3 | 4 |
<h1>[% title %]</h1> |
4 | 5 |
|
6 |
<div class="wrapper"> |
|
7 |
|
|
8 |
[% IF SAVED_MESSAGE %] |
|
9 |
<p class="message">[% SAVED_MESSAGE %]</p> |
|
10 |
[% END %] |
|
11 |
|
|
12 |
<p>[% 'Allow the following users access to my follow-ups:' | $T8 %]</p> |
|
13 |
|
|
14 |
<form action="fu.pl" method="post" name="Form" id="form"> |
|
15 |
|
|
16 |
<table class="tbl-list width-moderate"> |
|
17 |
<thead> |
|
18 |
<tr> |
|
19 |
<th>[% 'User' | $T8 %]</th> |
|
20 |
<th>[% 'Allow access' | $T8 %]</th> |
|
21 |
</tr> |
|
22 |
</thead> |
|
23 |
<tbody> |
|
24 |
[% FOREACH row = EMPLOYEES %] |
|
25 |
[% UNLESS row.login == login %] |
|
26 |
<tr> |
|
27 |
<td> |
|
28 |
<input type="hidden" name="employee_id_[% loop.count %]" value="[% HTML.escape(row.id) %]"> |
|
29 |
[% IF row.name %] |
|
30 |
[% HTML.escape(row.name) %] ([% HTML.escape(row.login) %]) |
|
31 |
[% ELSE %] |
|
32 |
[% HTML.escape(row.login) %] |
|
33 |
[% END %] |
|
34 |
</td> |
|
35 |
<td class="horizontal"> |
|
36 |
<input type="radio" id="access_[% HTML.escape(row.id) %]_yes" name="access_[% HTML.escape(row.id) %]" value="1"[% IF row.access %] checked[% END %]> |
|
37 |
<label for="access_[% HTML.escape(row.id) %]_yes">[% 'Yes' | $T8 %]</label> |
|
38 |
<input type="radio" id="access_[% HTML.escape(row.id) %]_no" name="access_[% HTML.escape(row.id) %]" value=""[% UNLESS row.access %] checked[% END %]> |
|
39 |
<label for="access_[% HTML.escape(row.id) %]_no">[% 'No' | $T8 %]</label> |
|
40 |
</td> |
|
41 |
</tr> |
|
42 |
[% END %] |
|
43 |
[% END %] |
|
44 |
</tbody> |
|
45 |
</table> |
|
46 |
|
|
47 |
<input type="hidden" name="rowcount" value="[% EMPLOYEES.size %]"> |
|
48 |
</form> |
|
49 |
|
|
50 |
</div> |
|
5 | 51 |
|
6 |
[%- IF SAVED_MESSAGE %] |
|
7 |
<p>[% SAVED_MESSAGE %]</p> |
|
8 |
[%- END %] |
|
9 |
|
|
10 |
<p>[% 'Allow the following users access to my follow-ups:' | $T8 %]</p> |
|
11 |
|
|
12 |
<form action="fu.pl" method="post" name="Form" id="form"> |
|
13 |
<p> |
|
14 |
<table> |
|
15 |
<tr> |
|
16 |
<td class="listheading">[% 'User' | $T8 %]</td> |
|
17 |
<td class="listheading">[% 'Allow access' | $T8 %]</td> |
|
18 |
</tr> |
|
19 |
|
|
20 |
[%- FOREACH row = EMPLOYEES %] |
|
21 |
[%- UNLESS row.login == login %] |
|
22 |
<input type="hidden" name="employee_id_[% loop.count %]" value="[% HTML.escape(row.id) %]"> |
|
23 |
|
|
24 |
<tr class="listrow[% loop.count % 2 %]"> |
|
25 |
<td>[% IF row.name %][% HTML.escape(row.name) %] ([% HTML.escape(row.login) %])[% ELSE %][% HTML.escape(row.login) %][% END %]</td> |
|
26 |
<td> |
|
27 |
<input type="radio" id="access_[% HTML.escape(row.id) %]_yes" name="access_[% HTML.escape(row.id) %]" value="1"[% IF row.access %] checked[% END %]> |
|
28 |
<label for="access_[% HTML.escape(row.id) %]_yes">[% 'Yes' | $T8 %]</label> |
|
29 |
<input type="radio" id="access_[% HTML.escape(row.id) %]_no" name="access_[% HTML.escape(row.id) %]" value=""[% UNLESS row.access %] checked[% END %]> |
|
30 |
<label for="access_[% HTML.escape(row.id) %]_no">[% 'No' | $T8 %]</label> |
|
31 |
</td> |
|
32 |
</tr> |
|
33 |
[%- END %] |
|
34 |
[%- END %] |
|
35 |
</table> |
|
36 |
</p> |
|
37 |
|
|
38 |
<input type="hidden" name="rowcount" value="[% EMPLOYEES.size %]"> |
|
39 |
</form> |
templates/webpages/fu/report_bottom.html | ||
---|---|---|
1 | 1 |
[% USE T8 %] |
2 | 2 |
[% USE HTML%] |
3 |
<input type="hidden" name="rowcount" value="[% HTML.escape(rowcount) %]"> |
|
4 |
[%- FOREACH item = HIDDEN %] |
|
5 |
<input type="hidden" name="[% HTML.escape(item.key) %]" value="[% HTML.escape(item.value) %]"> |
|
6 |
[%- END %] |
|
3 |
|
|
4 |
<input type="hidden" name="rowcount" value="[% HTML.escape(rowcount) %]"> |
|
5 |
[% FOREACH item = HIDDEN %] |
|
6 |
<input type="hidden" name="[% HTML.escape(item.key) %]" value="[% HTML.escape(item.value) %]"> |
|
7 |
[% END %] |
|
7 | 8 |
</form> |
templates/webpages/fu/report_for_todo_list.html | ||
---|---|---|
1 | 1 |
[% USE T8 %] |
2 | 2 |
[% USE HTML %] |
3 |
<h1>[% 'Unfinished follow-ups' | $T8 %]</h1> |
|
4 | 3 |
|
5 |
<form action="fu.pl" method="post" name="TODOFollowUpsForm"> |
|
6 |
<input type="hidden" name="callback" value="[% HTML.escape(callback) %]"> |
|
7 |
<input type="hidden" name="rowcount" value="[% FOLLOW_UPS.size %]"> |
|
4 |
<div class="wrapper center"> |
|
8 | 5 |
|
9 |
<table width="100%"> |
|
10 |
<tr> |
|
11 |
<td class="listheading"> </td> |
|
12 |
<td class="listheading">[% 'Follow-Up Date' | $T8 %]</td> |
|
13 |
<td class="listheading">[% 'Created on' | $T8 %]</td> |
|
14 |
<td class="listheading">[% 'Subject' | $T8 %]</td> |
|
15 |
<td class="listheading">[% 'Reference' | $T8 %]</td> |
|
16 |
<td class="listheading">[% 'Created by' | $T8 %]</td> |
|
17 |
</tr> |
|
6 |
<form action="fu.pl" method="post" name="TODOFollowUpsForm"> |
|
7 |
<input type="hidden" name="callback" value="[% HTML.escape(callback) %]"> |
|
8 |
<input type="hidden" name="rowcount" value="[% FOLLOW_UPS.size %]"> |
|
9 |
|
|
10 |
<table class="tbl-list width-moderate"> |
|
11 |
<caption>[% 'Unfinished follow-ups' | $T8 %]</caption> |
|
12 |
<thead> |
|
13 |
<tr> |
|
14 |
<th> </th> |
|
15 |
<th>[% 'Follow-Up Date' | $T8 %]</th> |
|
16 |
<th>[% 'Created on' | $T8 %]</th> |
|
17 |
<th>[% 'Subject' | $T8 %]</th> |
|
18 |
<th>[% 'Reference' | $T8 %]</th> |
|
19 |
<th>[% 'Created by' | $T8 %]</th> |
|
20 |
</tr> |
|
21 |
</thead> |
|
22 |
<tbody> |
|
23 |
[% FOREACH row = FOLLOW_UPS %] |
|
24 |
<tr> |
|
25 |
<td> |
|
26 |
<input type="hidden" name="follow_up_id_[% loop.count %]" value="[% HTML.escape(row.id) %]"> |
|
27 |
<input type="checkbox" name="selected_[% loop.count %]" value="1"> |
|
28 |
</td> |
|
29 |
<td><a href="[% edit_url | html %][% HTML.escape(row.id) %]">[% HTML.escape(row.follow_up_date) %]</a></td> |
|
30 |
<td><a href="[% edit_url | html %][% HTML.escape(row.id) %]">[% HTML.escape(row.created_on) %]</a></td> |
|
31 |
<td><a href="[% edit_url | html %][% HTML.escape(row.id) %]">[% HTML.escape(row.subject) %]</a></td> |
|
32 |
<td>[% IF row.reference_link %]<a href="[% row.reference_link | html %]" class="alternative">[% END %][% HTML.escape(row.reference) %][% IF row.reference_link %]</a>[% END %]</td> |
|
33 |
<td><a href="[% edit_url | html %][% HTML.escape(row.id) %]">[% HTML.escape(row.created_by_name) %]</a></td> |
|
34 |
</tr> |
|
35 |
[% END %] |
|
36 |
</tbody> |
|
37 |
</table> |
|
38 |
|
|
39 |
<div class="buttons"> |
|
40 |
<input type="hidden" name="action" value="dispatcher"> |
|
41 |
<input type="submit" name="action_finish" value="[% 'Finish' | $T8 %]"> |
|
42 |
<input type="submit" name="action_delete" value="[% 'Delete' | $T8 %]"> |
|
43 |
</div> |
|
44 |
|
|
45 |
</form> |
|
46 |
</div> |
|
18 | 47 |
|
19 |
[%- FOREACH row = FOLLOW_UPS %] |
|
20 |
<tr class="listrow[% loop.count % 2 %]"> |
|
21 |
<td> |
|
22 |
<input type="hidden" name="follow_up_id_[% loop.count %]" value="[% HTML.escape(row.id) %]"> |
|
23 |
<input type="checkbox" name="selected_[% loop.count %]" value="1"> |
|
24 |
</td> |
|
25 |
<td>[% HTML.escape(row.follow_up_date) %]</td> |
|
26 |
<td>[% HTML.escape(row.created_on) %]</td> |
|
27 |
<td><a href="[% edit_url | html %][% HTML.escape(row.id) %]">[% HTML.escape(row.subject) %]</a></td> |
|
28 |
<td>[% IF row.reference_link %]<a href="[% row.reference_link | html %]">[% END %][% HTML.escape(row.reference) %][% IF row.reference_link %]</a>[% END %]</td> |
|
29 |
<td>[% HTML.escape(row.created_by_name) %]</td> |
|
30 |
</tr> |
|
31 |
[%- END %] |
|
32 |
</table> |
|
33 | 48 |
|
34 |
<p> |
|
35 |
<input type="hidden" name="action" value="dispatcher"> |
|
36 |
<input type="submit" class="submit" name="action_finish" value="[% 'Finish' | $T8 %]"> |
|
37 |
<input type="submit" class="submit" name="action_delete" value="[% 'Delete' | $T8 %]"> |
|
38 |
</p> |
|
39 |
</form> |
templates/webpages/fu/report_top.html | ||
---|---|---|
1 |
[%- IF SAVED_MESSAGE %]
|
|
2 |
<p>[% SAVED_MESSAGE %]</p> |
|
3 |
[%- END %]
|
|
1 |
[% IF SAVED_MESSAGE %] |
|
2 |
<p class="message">[% SAVED_MESSAGE %]</p>
|
|
3 |
[% END %] |
|
4 | 4 |
|
5 |
[%- IF OPTIONS.size %]
|
|
6 |
<p> |
|
7 |
[%- FOREACH option = OPTIONS %]
|
|
8 |
[%- option %][% UNLESS loop.last %]<br>[% END %]
|
|
9 |
[%- END %]
|
|
10 |
</p> |
|
11 |
[%- END %]
|
|
5 |
[% IF OPTIONS.size %] |
|
6 |
<p>
|
|
7 |
[% FOREACH option = OPTIONS %]
|
|
8 |
[% option %][% UNLESS loop.last %]<br>[% END %]
|
|
9 |
[% END %]
|
|
10 |
</p>
|
|
11 |
[% END %] |
|
12 | 12 |
|
13 | 13 |
<form action="fu.pl" method="post" name="Form" id="form"> |
templates/webpages/fu/search.html | ||
---|---|---|
1 | 1 |
[% USE T8 %] |
2 | 2 |
[% USE L %] |
3 | 3 |
[% USE HTML %] |
4 |
<h1>[% title %]</h1> |
|
5 |
|
|
6 |
<script type="text/javascript"> |
|
7 |
$(function(){ document.Form.subject.focus(); }); |
|
8 |
</script> |
|
9 |
|
|
10 |
<form action="fu.pl" method="post" name="Form" id="form"> |
|
11 |
<p> |
|
12 |
<table> |
|
13 |
<tr> |
|
14 |
<td align="right">[% 'Created for' | $T8 %]</td> |
|
15 |
<td> |
|
16 |
<select name="created_for"> |
|
17 |
<option></option> |
|
18 |
[%- FOREACH row = EMPLOYEES %] |
|
19 |
<option value="[% HTML.escape(row.id) %]"> |
|
20 |
[%- IF row.name %] |
|
21 |
[%- HTML.escape(row.name) %] ([% HTML.escape(row.login) %]) |
|
22 |
[%- ELSE %] |
|
23 |
[%- HTML.escape(row.login) %] |
|
24 |
[%- END %] |
|
25 |
</option> |
|
26 |
[%- END %] |
|
27 |
</select> |
|
28 |
</td> |
|
29 |
</tr> |
|
30 |
|
|
31 |
<tr> |
|
32 |
<td align="right">[% 'Subject' | $T8 %]</td> |
|
33 |
<td><input name="subject" size="20"></td> |
|
34 |
</tr> |
|
35 |
|
|
36 |
<tr> |
|
37 |
<td align="right">[% 'Body' | $T8 %]</td> |
|
38 |
<td><input name="body" size="20"></td> |
|
39 |
</tr> |
|
40 |
|
|
41 |
<tr> |
|
42 |
<td align="right">[% 'Reference' | $T8 %]</td> |
|
43 |
<td><input name="reference" size="20"></td> |
|
44 |
</tr> |
|
45 | 4 |
|
46 |
<tr> |
|
47 |
<td align="right">[% 'Follow-Up Date' | $T8 %]</td> |
|
48 |
<td> |
|
49 |
[% 'From' | $T8 %] |
|
50 |
[% L.date_tag('follow_up_date_from') %] |
|
51 |
[% 'To (time)' | $T8 %] |
|
52 |
[% L.date_tag('follow_up_date_to') %] |
|
53 |
</td> |
|
54 |
</tr> |
|
55 |
|
|
56 |
<tr> |
|
57 |
<td align="right">[% 'Created on' | $T8 %]</td> |
|
58 |
<td> |
|
59 |
[% 'From' | $T8 %] |
|
60 |
[% L.date_tag('itime_from') %] |
|
61 |
[% 'To (time)' | $T8 %] |
|
62 |
[% L.date_tag('itime_to') %] |
|
63 |
</td> |
|
64 |
</tr> |
|
5 |
<h1>[% title %]</h1> |
|
65 | 6 |
|
66 |
<tr>
|
|
67 |
<td align="right">[% 'Include in Report' | $T8 %]</td>
|
|
68 |
<td>
|
|
7 |
<script type="text/javascript">
|
|
8 |
$(function(){ document.Form.subject.focus(); });
|
|
9 |
</script>
|
|
69 | 10 |
|
70 |
<table> |
|
71 |
<tr> |
|
72 |
<td> |
|
73 |
<input type="checkbox" name="due_only" id="due_only" value="1" checked> |
|
74 |
<label for="due_only">[% 'Only due follow-ups' | $T8 %]</label> |
|
75 |
</td> |
|
11 |
<form action="fu.pl" method="post" name="Form" id="form"> |
|
76 | 12 |
|
13 |
<div class="wrapper"> |
|
14 |
<table class="tbl-horizontal"> |
|
15 |
<tbody> |
|
16 |
<tr> |
|
17 |
<th>[% 'Created for' | $T8 %]</th> |
|
77 | 18 |
<td> |
78 |
<input type="checkbox" name="all_users" id="all_users" value="1" checked> |
|
79 |
<label for="all_users">[% 'Other users\' follow-ups' | $T8 %]</label> |
|
19 |
<select name="created_for" class="wi-wider"> |
|
20 |
<option></option> |
|
21 |
[% FOREACH row = EMPLOYEES %] |
|
22 |
<option value="[% HTML.escape(row.id) %]"> |
|
23 |
[% IF row.name %] |
|
24 |
[% HTML.escape(row.name) %] ([% HTML.escape(row.login) %]) |
|
25 |
[% ELSE %] |
|
26 |
[% HTML.escape(row.login) %] |
|
27 |
[% END %] |
|
28 |
</option> |
|
29 |
[% END %] |
|
30 |
</select> |
|
80 | 31 |
</td> |
81 |
</tr> |
|
82 |
|
|
83 |
<tr> |
|
32 |
</tr> |
|
33 |
<tr> |
|
34 |
<th>[% 'Subject' | $T8 %]</th> |
|
35 |
<td><input type="text" name="subject" class="wi-wider"></td> |
|
36 |
</tr> |
|
37 |
<tr> |
|
38 |
<th>[% 'Body' | $T8 %]</th> |
|
39 |
<td><input type="text" name="body" class="wi-wider"></td> |
|
40 |
</tr> |
|
41 |
<tr> |
|
42 |
<th>[% 'Reference' | $T8 %]</th> |
|
43 |
<td><input type="text" name="reference" class="wi-wider"></td> |
|
44 |
</tr> |
|
45 |
<tr> |
|
46 |
<th>[% 'Follow-Up Date' | $T8 %]</th> |
|
84 | 47 |
<td> |
85 |
<input type="checkbox" name="not_done" id="not_done" value="1" checked>
|
|
86 |
<label for="not_done">[% 'Not done yet' | $T8 %]</label>
|
|
48 |
[% 'From' | $T8 %] [% L.date_tag('follow_up_date_from') %]
|
|
49 |
[% 'To (time)' | $T8 %] [% L.date_tag('follow_up_date_to' ) %]
|
|
87 | 50 |
</td> |
88 |
|
|
51 |
</tr> |
|
52 |
<tr> |
|
53 |
<th>[% 'Created on' | $T8 %]</th> |
|
89 | 54 |
<td> |
90 |
<input type="checkbox" name="done" id="done" value="1">
|
|
91 |
<label for="done">[% 'Done' | $T8 %]</label>
|
|
55 |
[% 'From' | $T8 %] [% L.date_tag('itime_from') %]
|
|
56 |
[% 'To (time)' | $T8 %] [% L.date_tag('itime_to' ) %]
|
|
92 | 57 |
</td> |
93 |
</tr> |
|
94 |
</table> |
|
58 |
</tr> |
|
59 |
</tbody> |
|
60 |
</table> |
|
61 |
</div> |
|
95 | 62 |
|
96 |
</td> |
|
97 |
</tr> |
|
63 |
<div class="form-addition control-panel"> |
|
64 |
<h3>[% 'Include in Report' | $T8 %]</h3> |
|
65 |
<div class="list"> |
|
66 |
<input type="checkbox" name="due_only" id="due_only" value="1" checked> <label for="due_only">[% 'Only due follow-ups' | $T8 %]</label> <br> |
|
67 |
<input type="checkbox" name="all_users" id="all_users" value="1" checked> <label for="all_users">[% 'Other users\' follow-ups' | $T8 %]</label> <br> |
|
68 |
<input type="checkbox" name="not_done" id="not_done" value="1" checked> <label for="not_done">[% 'Not done yet' | $T8 %]</label> <br> |
|
69 |
<input type="checkbox" name="done" id="done" value="1"> <label for="done">[% 'Done' | $T8 %]</label> |
|
70 |
</div> |
|
71 |
</div> |
|
98 | 72 |
|
99 |
</table> |
|
100 |
</p> |
|
101 |
</form> |
|
73 |
</form> |
Auch abrufbar als: Unified diff
Neues Design 2019 Standard-Code templates/webpages/fu/