diff options
author | Chris Mytton <self@hecticjeff.net> | 2013-09-11 12:36:51 +0100 |
---|---|---|
committer | Chris Mytton <self@hecticjeff.net> | 2013-09-11 12:36:51 +0100 |
commit | 9ead5a166830715e149a2ec2c2c064331a6f48ae (patch) | |
tree | 0f92eef410b404c16f8ea92db7b242cecdfec51a | |
parent | 10b8a68e9b2e3dadba7142a70022b4a636e644ad (diff) |
[Zurich] Problems can't be assigned to deleted bodies
-rw-r--r-- | templates/web/zurich/admin/report_edit.html | 2 |
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> |