From 620bb51b19bf6bf5c3bced099fc8a65aa1438267 Mon Sep 17 00:00:00 2001 From: "jocuri%softhome.net" <> Date: Thu, 2 Mar 2006 06:24:13 +0000 Subject: Patch for bug 325567: display more information when listing flag types in editflagtypes.cgi (especially the grant and request group); patch by Remi Zara , r=LpSolit, a=justdave. --- template/en/default/admin/flag-type/list.html.tmpl | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'template') diff --git a/template/en/default/admin/flag-type/list.html.tmpl b/template/en/default/admin/flag-type/list.html.tmpl index bd1d7cb72..a9dc40519 100644 --- a/template/en/default/admin/flag-type/list.html.tmpl +++ b/template/en/default/admin/flag-type/list.html.tmpl @@ -26,6 +26,7 @@ style = " table#flag_types tr th { text-align: left; } .inactive { color: #787878; } + .multiplicable { display: block; } " %] @@ -88,6 +89,9 @@ Edit name ... Description Sortkey + Properties + Grant group + Request group Actions @@ -97,6 +101,19 @@ [% type.name FILTER html FILTER no_break %] [% type.description FILTER html %] [% type.sortkey FILTER html %] + + [% IF type.is_requestable %] + requestable + [% END %] + [% IF type.is_requestable && type.is_requesteeble %] + (specifically) + [% END %] + [% IF type.is_multiplicable %] + multiplicable + [% END %] + + [% type.grant_group_name FILTER html %] + [% type.request_group_name FILTER html %] Copy |