aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 %]