aboutsummaryrefslogtreecommitdiffstats
path: root/template/en/default/admin/keywords/edit.html.tmpl
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@netscape.net>2017-08-01 16:37:44 +0200
committerFrédéric Buclin <LpSolit@netscape.net>2017-08-01 16:37:44 +0200
commit775362d8fb630da4fbb1e3f75c45183fd0a28667 (patch)
tree267323a27f46cecd5e1b544769912078fae2fb81 /template/en/default/admin/keywords/edit.html.tmpl
parent224a72476a50a3d3408adf5b1ed1c01bc48a7701 (diff)
downloadbugs-775362d8fb630da4fbb1e3f75c45183fd0a28667.tar
bugs-775362d8fb630da4fbb1e3f75c45183fd0a28667.tar.gz
bugs-775362d8fb630da4fbb1e3f75c45183fd0a28667.tar.bz2
bugs-775362d8fb630da4fbb1e3f75c45183fd0a28667.tar.xz
bugs-775362d8fb630da4fbb1e3f75c45183fd0a28667.zip
Backport upstream bug 69267: Add the ability to deactivate keywords
Diffstat (limited to 'template/en/default/admin/keywords/edit.html.tmpl')
-rw-r--r--template/en/default/admin/keywords/edit.html.tmpl11
1 files changed, 8 insertions, 3 deletions
diff --git a/template/en/default/admin/keywords/edit.html.tmpl b/template/en/default/admin/keywords/edit.html.tmpl
index 23158d36f..7e6617a84 100644
--- a/template/en/default/admin/keywords/edit.html.tmpl
+++ b/template/en/default/admin/keywords/edit.html.tmpl
@@ -18,14 +18,19 @@
<form method="post" action="editkeywords.cgi">
<table id="admin_table_edit">
<tr>
- <th>Name:</th>
- <td><input size="64" maxlength="64" name="name"
+ <th><label for="name">Name:</label></th>
+ <td><input size="64" maxlength="64" name="name" id="name"
value="[% keyword.name FILTER html %]" required></td>
</tr>
<tr>
- <th>Description:</th>
+ <th><label for="is_active">Enabled For [% terms.Bugs %]</label></th>
+ <td><input id="is_active" name="is_active" type="checkbox" [% "checked" IF keyword.is_active %]></td>
+ </tr>
+ <tr>
+ <th><label for="decription">Description:</label></th>
<td>
[% INCLUDE global/textarea.html.tmpl
+ id = 'description'
name = 'description'
minrows = 4
cols = 64