summaryrefslogtreecommitdiffstats
path: root/template/en/default/admin/keywords/confirm-delete.html.tmpl
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2013-12-31 13:48:41 +0100
committerFrédéric Buclin <LpSolit@gmail.com>2013-12-31 13:48:41 +0100
commit4fa178ae3f0f612cf91b26a2dea498602794be3b (patch)
treeae4bd380dfbc7e7f3d3392d9a4f9947a91e48077 /template/en/default/admin/keywords/confirm-delete.html.tmpl
parent5a15633a1179f960e1726eebf7f38c7ee2f2b4f8 (diff)
downloadbugzilla-4fa178ae3f0f612cf91b26a2dea498602794be3b.tar.gz
bugzilla-4fa178ae3f0f612cf91b26a2dea498602794be3b.tar.xz
Bug 920681: Remove the cellspacing and cellpadding attributes from tables
r/a=justdave
Diffstat (limited to 'template/en/default/admin/keywords/confirm-delete.html.tmpl')
-rw-r--r--template/en/default/admin/keywords/confirm-delete.html.tmpl21
1 files changed, 12 insertions, 9 deletions
diff --git a/template/en/default/admin/keywords/confirm-delete.html.tmpl b/template/en/default/admin/keywords/confirm-delete.html.tmpl
index 718a32ec5..9f59cc57f 100644
--- a/template/en/default/admin/keywords/confirm-delete.html.tmpl
+++ b/template/en/default/admin/keywords/confirm-delete.html.tmpl
@@ -12,26 +12,29 @@
[% PROCESS global/header.html.tmpl
title = "Delete Keyword"
+ style_urls = ['skins/standard/admin.css']
%]
-<p>
+<h2>Confirmation</h2>
+
+<p class="confirmation">
[% IF keyword.bug_count == 1 %]
- There is one [% terms.bug %] with this keyword set.
+ There is one [% terms.bug %]
[% ELSIF keyword.bug_count > 1 %]
- There are [% keyword.bug_count FILTER html %] [%+ terms.bugs %] with
- this keyword set.
+ There are [% keyword.bug_count FILTER html %] [%+ terms.bugs %]
[% END %]
-
- Are you <b>sure</b> you want to delete
- the <code>[% keyword.name FILTER html %]</code> keyword?
+ with the <em>[% keyword.name FILTER html %]</em> keyword set.
+</p>
+
+<p>
+ Do you really want to delete this keyword?
</p>
<form method="post" action="editkeywords.cgi">
<input type="hidden" name="id" value="[% keyword.id FILTER html %]">
<input type="hidden" name="action" value="delete">
<input type="hidden" name="token" value="[% token FILTER html %]">
- <input type="submit" id="delete"
- value="Yes, really delete the keyword">
+ <input type="submit" id="delete" value="Yes, delete">
</form>
<p><a href="editkeywords.cgi">Edit other keywords</a>.</p>