aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Somerville <matthew@mysociety.org>2013-01-16 16:05:22 +0000
committerMatthew Somerville <matthew@mysociety.org>2013-01-16 16:05:22 +0000
commit3b75b2612eb9b2904049814ae6c2c69fd65a60fa (patch)
treebaad48ddd188781cea63e03f7caecb2b38591800
parent85443c90882aeeec95a7ceed53dd54c1af21e4b0 (diff)
Have some sort of update when assigned to Zurich external body.
-rw-r--r--templates/web/zurich/report/updates.html8
1 files changed, 5 insertions, 3 deletions
diff --git a/templates/web/zurich/report/updates.html b/templates/web/zurich/report/updates.html
index 84cc3257f..0f9afbf68 100644
--- a/templates/web/zurich/report/updates.html
+++ b/templates/web/zurich/report/updates.html
@@ -1,15 +1,17 @@
-[% IF problem.state == 'fixed - council' %]
-
+[% IF problem.state == 'fixed - council' OR problem.state == 'closed' %]
<h4 class="static-with-rule">[% loc('Updates') %]</h4>
<ul class="issue-list">
<li>
<div class="update-wrap">
<div class="update-text">
<p class="meta-2">[% prettify_epoch( problem.lastupdate_local.epoch ) %]</p>
+ [% IF problem.state == 'fixed - council' %]
[% add_links( problem.extra.public_response ) | html_para %]
+ [% ELSIF problem.state == 'closed' AND problem.external_body %]
+ <p>[% tprintf( loc('Assigned to %s'), problem.body(c).name ) %]</p>
+ [% END %]
</div>
</div>
</li>
</ul>
-
[% END %]