diff options
author | Matthew Somerville <matthew-github@dracos.co.uk> | 2019-05-03 13:31:57 +0100 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2019-05-07 15:01:07 +0100 |
commit | 0236d3a37da94e06e9e6208f50f6c0b9388feb7c (patch) | |
tree | 53a206661f0b46303faaa3cf1e77c748f59b1621 /templates/web/base/admin/template_edit.html | |
parent | b8fd2a09332798214188cbedecb85294645c06dc (diff) |
Prevent creation of two templates with same title.
Diffstat (limited to 'templates/web/base/admin/template_edit.html')
-rw-r--r-- | templates/web/base/admin/template_edit.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/templates/web/base/admin/template_edit.html b/templates/web/base/admin/template_edit.html index 2945e36c5..87218c7dd 100644 --- a/templates/web/base/admin/template_edit.html +++ b/templates/web/base/admin/template_edit.html @@ -13,7 +13,9 @@ <p class="error">[% loc('Please correct the errors below') %]</p> [% END %] - + [% IF errors.title %] + <div class="form-error">[% errors.title %]</div> + [% END %] <div class="admin-hint"> <p> [% loc('This is a <strong>private</strong> name for this template so you can identify it when updating reports or editing in the admin.') %] |