summaryrefslogtreecommitdiffstats
path: root/template/en/default/admin/keywords/create.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/create.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/create.html.tmpl')
-rw-r--r--template/en/default/admin/keywords/create.html.tmpl9
1 files changed, 6 insertions, 3 deletions
diff --git a/template/en/default/admin/keywords/create.html.tmpl b/template/en/default/admin/keywords/create.html.tmpl
index 10de960cb..3c310cce0 100644
--- a/template/en/default/admin/keywords/create.html.tmpl
+++ b/template/en/default/admin/keywords/create.html.tmpl
@@ -9,14 +9,15 @@
[%# INTERFACE:
# none
#%]
-
+
[% PROCESS global/header.html.tmpl
title = "Add keyword"
subheader = "This page allows you to add a new keyword."
+ style_urls = ['skins/standard/admin.css']
%]
<form method="post" action="editkeywords.cgi">
- <table border="0" cellpadding="4" cellspacing="0">
+ <table id="admin_table_edit">
<tr>
<th>Name:</th>
<td><input size="64" maxlength="64" name="name" value=""></td>
@@ -33,13 +34,15 @@
</td>
</tr>
</table>
- <hr>
+
<input type="hidden" name="id" value="-1">
<input type="submit" id="create" value="Add">
<input type="hidden" name="action" value="new">
<input type="hidden" name="token" value="[% token FILTER html %]">
</form>
+<hr>
+
<p><a href="editkeywords.cgi">Edit other keywords</a>.</p>
[% PROCESS global/footer.html.tmpl %]