diff options
-rw-r--r-- | templates/web/zurich/admin/index-dm.html | 4 | ||||
-rw-r--r-- | templates/web/zurich/admin/report_edit-sdm.html | 7 | ||||
-rw-r--r-- | templates/web/zurich/admin/report_edit.html | 2 | ||||
-rw-r--r-- | web/cobrands/zurich/layout.scss | 3 |
4 files changed, 10 insertions, 6 deletions
diff --git a/templates/web/zurich/admin/index-dm.html b/templates/web/zurich/admin/index-dm.html index c93adbfb3..92df5b415 100644 --- a/templates/web/zurich/admin/index-dm.html +++ b/templates/web/zurich/admin/index-dm.html @@ -1,7 +1,9 @@ [% PROCESS 'admin/header.html' title=loc('Summary') -%] [% PROCESS 'admin/report_blocks.html' %] -[% INCLUDE status_message %] +<div class="index-status"> +[% status_message %] +</div> <h2 id="submitted">[% loc('Submitted') %]</h2> [% INCLUDE list, problems = submitted.all, hash = 'submitted' %] diff --git a/templates/web/zurich/admin/report_edit-sdm.html b/templates/web/zurich/admin/report_edit-sdm.html index 0edbedc37..d8e6c2625 100644 --- a/templates/web/zurich/admin/report_edit-sdm.html +++ b/templates/web/zurich/admin/report_edit-sdm.html @@ -66,10 +66,6 @@ <dt>[% loc('Time spent (in minutes):') %]</dt> <dd>[% problem.get_time_spent %]</dd> - <dd> - [% INCLUDE status_message %] - </dd> - [% IF problem.photo %] <dd> [% FOR photo IN problem.photos %] @@ -90,6 +86,9 @@ <div class="admin-report-edit admin-report-edit--interact"> <p align="right" class="screen-only"><input [% sdm_disabled %] type="submit" class="btn" name="send_back" value="[% loc('Not for my subdivision') %]"></p> + +[% status_message %] + <p align="right" class="screen-only"><input [% sdm_disabled %] type="submit" class="btn" name="not_contactable" value="[% loc('Customer not contactable') %]"></p> <ul class="no-bullets screen-only"> diff --git a/templates/web/zurich/admin/report_edit.html b/templates/web/zurich/admin/report_edit.html index 38ab68ed9..a46bbfc3f 100644 --- a/templates/web/zurich/admin/report_edit.html +++ b/templates/web/zurich/admin/report_edit.html @@ -117,7 +117,7 @@ <div class="admin-report-edit admin-report-edit--interact"> -[% INCLUDE status_message %] +[% status_message %] <dl [% IF status_message %]class="with-message"[% END %]> diff --git a/web/cobrands/zurich/layout.scss b/web/cobrands/zurich/layout.scss index 97ae8fc4a..d98afba5d 100644 --- a/web/cobrands/zurich/layout.scss +++ b/web/cobrands/zurich/layout.scss @@ -315,6 +315,9 @@ body.mappage.admin { font-weight: bold; position: absolute; } + .index-status .message-updated { + margin-top: -1.5em; + } } .admin-nav-wrapper { |