summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--extensions/BugModal/template/en/default/bug_modal/activity_stream.html.tmpl9
1 files changed, 9 insertions, 0 deletions
diff --git a/extensions/BugModal/template/en/default/bug_modal/activity_stream.html.tmpl b/extensions/BugModal/template/en/default/bug_modal/activity_stream.html.tmpl
index 25198a7f2..8e4c47fbf 100644
--- a/extensions/BugModal/template/en/default/bug_modal/activity_stream.html.tmpl
+++ b/extensions/BugModal/template/en/default/bug_modal/activity_stream.html.tmpl
@@ -311,6 +311,8 @@
<a href="#c[% change.comment.count FILTER none %]">
Comment [% change.comment.count FILTER none %]</a> is private:
[%+
+ ELSIF change.fieldname == 'reporter_accessible';
+ "";
ELSE;
field_descs.${change.fieldname} _ ": " FILTER html;
END;
@@ -366,6 +368,13 @@
CASE [ 'assigned_to', 'reporter', 'qa_contact', 'cc', 'flagtypes.name' ];
value FILTER email;
+ CASE 'reporter_accessible';
+ IF value == 'true';
+ "Accessible to reporter";
+ ELSIF value == 'false';
+ "Not accessible to reporter";
+ END;
+
CASE;
IF change.fieldtype == constants.FIELD_TYPE_DATETIME;
INCLUDE bug_modal/rel_time.html.tmpl ts=value;