diff options
author | Struan Donald <struan@fury.ukcod.org.uk> | 2011-12-02 15:57:47 +0000 |
---|---|---|
committer | Struan Donald <struan@fury.ukcod.org.uk> | 2011-12-02 15:57:47 +0000 |
commit | 6bfa3f40e14d9b43285aaf18b2fdea5da0af3d2d (patch) | |
tree | 09cfb17a6345c058ceb57a0182f94405bf342617 | |
parent | cf18971b17ac33efa808b6e0e31c8d4198016136 (diff) |
fix broken link to report comment as unsuitable
-rw-r--r-- | templates/web/default/report/updates.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/templates/web/default/report/updates.html b/templates/web/default/report/updates.html index 803ed197e..4fd3c75d4 100644 --- a/templates/web/default/report/updates.html +++ b/templates/web/default/report/updates.html @@ -18,18 +18,18 @@ [%- ", " _ tprintf(loc( 'marked as %s' ), update.meta_problem_state) IF update.problem_state %] </em></p> - [% IF c.cobrand.allow_update_reporting %] - <p> - <a rel="nofollow" class="unsuitable-problem" href="[% c.uri_for( '/contact?id=' _ update.problem_id _ ';update_id' _ update.id ) %]">[% loc('Offensive? Unsuitable? Tell us') %]</a> - </p> - [% END %] - </div> <div class="update-text"> [% add_links( update.text ) | html_para %] [% INCLUDE 'report/photo.html' object=update %] + + [% IF c.cobrand.allow_update_reporting %] + <p align="right"> + <small><a rel="nofollow" class="unsuitable-problem" href="[% c.uri_for( '/contact', { id => update.problem_id, update_id => update.id } ) %]">[% loc('Offensive? Unsuitable? Tell us') %]</a></small> + </p> + [% END %] </div> </div> [% '</div>' IF loop.last %] |