diff options
Diffstat (limited to 'templates/web')
-rwxr-xr-x | templates/web/default/around/display_location.html | 2 | ||||
-rw-r--r-- | templates/web/default/contact/index.html | 4 | ||||
-rw-r--r-- | templates/web/default/report/display.html | 4 |
3 files changed, 4 insertions, 6 deletions
diff --git a/templates/web/default/around/display_location.html b/templates/web/default/around/display_location.html index 48ff5fcb8..de970e98a 100755 --- a/templates/web/default/around/display_location.html +++ b/templates/web/default/around/display_location.html @@ -9,7 +9,7 @@ : c.uri_for( "/rss/l/$short_latitude,$short_longitude" ); email_url = c.uri_for( - '/alert', + '/alert/list', { lat => short_latitude, lon => short_longitude, diff --git a/templates/web/default/contact/index.html b/templates/web/default/contact/index.html index ff08d10e8..35c7f7e36 100644 --- a/templates/web/default/contact/index.html +++ b/templates/web/default/contact/index.html @@ -14,10 +14,8 @@ [% loc('You are reporting the following update for being abusive, containing personal information, or similar:') %] </p> - [% IF update.title %] + [% IF update.text %] <blockquote> - <h2>[% update.title | html %]</h2> - <p> [% IF update.anonymous %] [% tprintf( loc('Update below added anonymously at %s'), prettify_epoch( update.confirmed_local.epoch ) ) %] diff --git a/templates/web/default/report/display.html b/templates/web/default/report/display.html index 05b594b7b..959f76d2b 100644 --- a/templates/web/default/report/display.html +++ b/templates/web/default/report/display.html @@ -72,7 +72,7 @@ [% INCLUDE 'errors.html' %] - <form method="post" action="[% c.uri_for( '/report/update' ) %]" name="updateForm" id="fieldset"[% IF allow_photo_upload %] enctype="multipart/form-data"[% END %]> + <form method="post" action="[% c.uri_for( '/report/update' ) %]" name="updateForm" id="fieldset"[% IF c.cobrand.allow_photo_upload %] enctype="multipart/form-data"[% END %]> <input type="hidden" name="submit_update" value="1"> <input type="hidden" name="id" value="[% problem.id | html %]"> @@ -113,7 +113,7 @@ [% END %] - [% IF allow_photo_upload %] + [% IF c.cobrand.allow_photo_upload %] [% IF photo_error %] <div class='form-error'>[% photo_error %]</div> [% END %] |