aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Mytton <self@hecticjeff.net>2013-09-11 12:36:51 +0100
committerChris Mytton <self@hecticjeff.net>2013-09-11 12:36:51 +0100
commit9ead5a166830715e149a2ec2c2c064331a6f48ae (patch)
tree0f92eef410b404c16f8ea92db7b242cecdfec51a
parent10b8a68e9b2e3dadba7142a70022b4a636e644ad (diff)
[Zurich] Problems can't be assigned to deleted bodies
-rw-r--r--templates/web/zurich/admin/report_edit.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/web/zurich/admin/report_edit.html b/templates/web/zurich/admin/report_edit.html
index 30dbcbd4b..c068158cd 100644
--- a/templates/web/zurich/admin/report_edit.html
+++ b/templates/web/zurich/admin/report_edit.html
@@ -136,7 +136,7 @@
<select name="body_external" id="body_external">
<option value="">--</option>
[% FOR body IN bodies %]
- [% NEXT IF body.parent OR body.bodies %]
+ [% NEXT IF body.parent OR body.bodies OR body.deleted %]
<option value="[% body.id %]"[% IF body.id == problem.bodies_str %] selected[% END %]>[% body.name %]</option>
[% END %]
</select>