diff options
author | lpsolit%gmail.com <> | 2009-02-09 22:06:32 +0100 |
---|---|---|
committer | lpsolit%gmail.com <> | 2009-02-09 22:06:32 +0100 |
commit | 3f11fbd985b6870ce835fa2a8570a6bb2961eb27 (patch) | |
tree | 1da7ab882127b024a57a5d3b48ec963858f57360 /template/en/default/flag | |
parent | c23619f179ccb6c3dfdfdf3991a16ca8e2d5bf31 (diff) | |
download | bugzilla-3f11fbd985b6870ce835fa2a8570a6bb2961eb27.tar.gz bugzilla-3f11fbd985b6870ce835fa2a8570a6bb2961eb27.tar.xz |
Bug 477662: Display attachment flags as read-only to logged out users - Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=mkanat
Diffstat (limited to 'template/en/default/flag')
-rw-r--r-- | template/en/default/flag/list.html.tmpl | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/template/en/default/flag/list.html.tmpl b/template/en/default/flag/list.html.tmpl index 32a44a605..c7c8822f3 100644 --- a/template/en/default/flag/list.html.tmpl +++ b/template/en/default/flag/list.html.tmpl @@ -72,6 +72,8 @@ // --> </script> +[% IF user.id %] + [%# We list flags by looping twice over the flag types relevant for the bug. # In the first loop, we display existing flags and then, for active types, # we display UI for adding new flags. In the second loop, we display UI @@ -273,3 +275,16 @@ [% END %] </table> + +[% ELSE %] + [%# The user is logged out. Display flags as read-only. %] + [% FOREACH type = flag_types %] + [% FOREACH flag = type.flags %] + [% flag.setter.nick FILTER html %]: + [%+ type.name FILTER html FILTER no_break %][% flag.status %] + [% IF flag.requestee %] + ([% flag.requestee.nick FILTER html %]) + [% END %]<br> + [% END %] + [% END %] +[% END %]
\ No newline at end of file |