summaryrefslogtreecommitdiffstats
path: root/template/en/default/admin/flag-type/list.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/flag-type/list.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/flag-type/list.html.tmpl')
-rw-r--r--template/en/default/admin/flag-type/list.html.tmpl68
1 files changed, 34 insertions, 34 deletions
diff --git a/template/en/default/admin/flag-type/list.html.tmpl b/template/en/default/admin/flag-type/list.html.tmpl
index a3d26a0d0..375f62978 100644
--- a/template/en/default/admin/flag-type/list.html.tmpl
+++ b/template/en/default/admin/flag-type/list.html.tmpl
@@ -37,38 +37,38 @@
</p>
<form id="flagtype_form" name="flagtype_form" action="editflagtypes.cgi" method="get">
- <table>
- <tr>
- <th><label for="product">Product:</label></th>
- <td>
- <select name="product" onchange="selectProduct(this, this.form.component, null, null, '__Any__');">
- <option value="">__Any__</option>
- [% FOREACH prod = products %]
- <option value="[% prod.name FILTER html %]"
- [% " selected" IF selected_product == prod.name %]>
- [% prod.name FILTER html %]</option>
- [% END %]
- </select>
- </td>
- <th><label for="component">Component:</label></th>
- <td>
- <select name="component">
- <option value="">__Any__</option>
- [% FOREACH comp = components %]
- <option value="[% comp FILTER html %]"
- [% " selected" IF selected_component == comp %]>
- [% comp FILTER html %]</option>
- [% END %]
- </select>
- </td>
- <td>
- <input type="checkbox" id="show_flag_counts" name="show_flag_counts" value="1"
- [%+ 'checked="checked"' IF show_flag_counts %]>
- <label for="show_flag_counts">Show flag counts</label>
- </td>
- <td><input type="submit" id="submit" value="Filter"></td>
- </tr>
- </table>
+ <div class="inline">
+ <label for="product">Product:</label>
+ <select id="product" name="product"
+ onchange="selectProduct(this, this.form.component, null, null, '__Any__');">
+ <option value="">__Any__</option>
+ [% FOREACH prod = products %]
+ <option value="[% prod.name FILTER html %]"
+ [%+ 'selected="selected"' IF selected_product == prod.name %]>
+ [%- prod.name FILTER html %]</option>
+ [% END %]
+ </select>
+ </div>
+
+ <div class="inline">
+ <label for="component">Component:</label>
+ <select name="component">
+ <option value="">__Any__</option>
+ [% FOREACH comp = components %]
+ <option value="[% comp FILTER html %]"
+ [%+ 'selected="selected"' IF selected_component == comp %]>
+ [%- comp FILTER html %]</option>
+ [% END %]
+ </select>
+ </div>
+
+ <div class="inline">
+ <input type="checkbox" id="show_flag_counts" name="show_flag_counts" value="1"
+ [%+ 'checked="checked"' IF show_flag_counts %]>
+ <label for="show_flag_counts">Show flag counts</label>
+ </div>
+
+ <input type="submit" id="submit" value="Filter">
</form>
<h3>Flag Types for [% terms.Bugs %]</h3>
@@ -91,7 +91,7 @@
[% BLOCK display_flag_types %]
- <table id="flag_types_[% types_id FILTER html %]" cellspacing="0" cellpadding="4" border="1">
+ <table id="flag_types_[% types_id FILTER html %]">
<tr class="column_header">
<th>Edit name ...</th>
@@ -113,7 +113,7 @@
<tr class="[% IF type.is_active %]active[% ELSE %]inactive[% END %]">
<td><a href="editflagtypes.cgi?action=edit&amp;id=[% type.id %]">[% type.name FILTER html FILTER no_break %]</a></td>
<td>[% type.description FILTER html %]</td>
- <td align="right">[% type.sortkey FILTER html %]</td>
+ <td class="right">[% type.sortkey FILTER html %]</td>
<td>
[% IF type.is_requestable %]
<span class="requestable">requestable</span>