diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/web/base/admin/template_edit.html | 20 | ||||
-rw-r--r-- | templates/web/base/admin/templates.html | 5 |
2 files changed, 22 insertions, 3 deletions
diff --git a/templates/web/base/admin/template_edit.html b/templates/web/base/admin/template_edit.html index 3e436dbf9..428aa46ac 100644 --- a/templates/web/base/admin/template_edit.html +++ b/templates/web/base/admin/template_edit.html @@ -21,7 +21,7 @@ </div> <p> <strong>[% loc('Title:') %] </strong> - <input type="text" name="title" class="required form-control" size="30" value="[% rt.title| html %]"> + <input type="text" name="title" class="required form-control" size="30" value="[% rt.title | html %]"> </p> <div class="admin-hint"> @@ -31,7 +31,7 @@ </div> <p> <strong>[% loc('Text:') %] </strong> - <textarea class="form-control" name="text" class="required">[% rt.text |html %]</textarea> + <textarea class="form-control" name="text" class="required">[% rt.text | html %]</textarea> </p> <div class="admin-hint"> @@ -41,6 +41,9 @@ </div> [% INCLUDE 'admin/category-checkboxes.html' %] + [% IF errors.state %] + <div class="form-error">[% errors.state %]</div> + [% END %] <div class="admin-hint"> <p> [% loc('If you want to use this template to prefill the update field when changing a report’s state, select the state here.') %] @@ -51,6 +54,19 @@ [% INCLUDE 'admin/state_groups_select.html' current_state=rt.state include_empty=1 %] </p> + [% IF errors.external_status_code %] + <div class="form-error">[% errors.external_status_code %]</div> + [% END %] + <div class="admin-hint"> + <p> + [% loc('If you want to use this template to prefill the update field when a report’s <strong>external</strong> (e.g. Confirm) status code changes, enter the status code here.') %] + </p> + </div> + <p> + <label for="external_status_code">[% loc('External status code') %]</label> + <input type="text" name="external_status_code" class="form-control" size="30" value="[% rt.external_status_code | html %]"> + </p> + [% IF errors.auto_response %] <div class="form-error">[% errors.auto_response %]</div> [% END %] diff --git a/templates/web/base/admin/templates.html b/templates/web/base/admin/templates.html index 444f2734d..21e4eea25 100644 --- a/templates/web/base/admin/templates.html +++ b/templates/web/base/admin/templates.html @@ -23,7 +23,10 @@ [% END %] [% END %] </td> - <td> [% t.state | html %] </td> + <td> + [% IF t.state %][% t.state | html %][% END %] + [% IF t.external_status_code %][% t.external_status_code | html %] (external)[% END %] + </td> <td> [% IF t.auto_response %]X[% END %] </td> <td> <a href="[% c.uri_for('templates', body.id, t.id) %]" class="btn">[% loc('Edit') %]</a> </td> </tr> |