diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/web/zurich/admin/report_edit-sdm.html | 18 | ||||
-rw-r--r-- | templates/web/zurich/admin/report_edit.html | 17 |
2 files changed, 35 insertions, 0 deletions
diff --git a/templates/web/zurich/admin/report_edit-sdm.html b/templates/web/zurich/admin/report_edit-sdm.html index 82bbeba23..6e952022a 100644 --- a/templates/web/zurich/admin/report_edit-sdm.html +++ b/templates/web/zurich/admin/report_edit-sdm.html @@ -46,6 +46,10 @@ <li><span class="mock-label">[% loc('Phone:') %]</span> [% IF problem.user.phone %][% problem.user.phone | html %][% ELSE %]<em>[% loc('None') %]</em>[% END %]</li> <li><span class="mock-label">[% loc('Created:') %]</span> [% PROCESS format_date this_date=problem.created %] [% problem.created.hms %]</li> +<li> + <label>[% loc('Time spent (in minutes):') %]</label> [% problem.get_time_spent %] +</li> + [% IF problem.photo %] <li><img alt="" src="[% c.cobrand.base_url %]/photo/[% problem.photo %].temp.jpeg"></li> [% END %] @@ -60,6 +64,20 @@ </ul> +<p class="report-edit-action"> +<label for="time_spent">[% loc('Time spent (in minutes):') %]</label> +<input type="text" name="time_spent" id="form_time_spent" style="width: 4em" value="0"> +<script> + $(function () { + $('#form_time_spent').spinner({ + spin: function (e, ui) { + if (ui.value < 0) { return false } + } + }); + }); +</script> +</p> + <p class="cf"> <input style="float:left" type="submit" name="Submit changes" value="[% loc('Submit changes') %]" > <input style="float:right" type="submit" name="no_more_updates" value="[% loc('No further updates') %]"> diff --git a/templates/web/zurich/admin/report_edit.html b/templates/web/zurich/admin/report_edit.html index d2c1760ff..89f27dcda 100644 --- a/templates/web/zurich/admin/report_edit.html +++ b/templates/web/zurich/admin/report_edit.html @@ -60,6 +60,9 @@ <li><span class="mock-label">[% loc('Phone:') %]</span> [% IF problem.user.phone %][% problem.user.phone | html %][% ELSE %]<em>[% loc('None') %]</em>[% END %]</li> <li><span class="mock-label">[% loc('Created:') %]</span> [% PROCESS format_date this_date=problem.created %] [% problem.created.hms %]</li> +<li> + <label>[% loc('Time spent (in minutes):') %]</label> [% problem.get_time_spent %] +</li> [% IF problem.photo %] <li> @@ -215,6 +218,20 @@ Ihre Stadt Zürich [% END %] +<p> +<label for="time_spent">[% loc('Time spent (in minutes):') %]</label> +<input type="text" name="time_spent" id="form_time_spent" style="width: 4em" value="0"> +<script> + $(function () { + $('#form_time_spent').spinner({ + spin: function (e, ui) { + if (ui.value < 0) { return false } + } + }); + }); +</script> +</p> + <p align="right"> [% IF problem.state == 'planned' %] <input type="submit" name="publish_response" value="[% loc('Publish the response') %]"> |