aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'template/en/default/admin/products/edit.html.tmpl')
-rw-r--r--template/en/default/admin/products/edit.html.tmpl55
1 files changed, 27 insertions, 28 deletions
diff --git a/template/en/default/admin/products/edit.html.tmpl b/template/en/default/admin/products/edit.html.tmpl
index a4fcd188f..8e1f5d87b 100644
--- a/template/en/default/admin/products/edit.html.tmpl
+++ b/template/en/default/admin/products/edit.html.tmpl
@@ -30,12 +30,12 @@
%]
<form method="post" action="editproducts.cgi">
- <table border="0" cellpadding="4" cellspacing="0">
+ <table id="admin_table_edit">
[% PROCESS "admin/products/edit-common.html.tmpl" %]
<tr>
- <th align="right" valign="top">
+ <th>
<a href="editcomponents.cgi?product=[% product.name FILTER uri %]">
Edit components:
</a>
@@ -45,55 +45,52 @@
[% FOREACH comp = product.components %]
<a href="editcomponents.cgi?action=edit&product=
[%- product.name FILTER uri %]&component=
- [%- comp.name FILTER uri %]">[% comp.name FILTER html %]</a>:&nbsp;
- [% IF comp.description %]
- [% comp.description FILTER html_light %]
- [% ELSE %]
- <font color="red">description missing</font>
- [% END %]
+ [%- comp.name FILTER uri %]">[% comp.name FILTER html %]</a>:
+ [% comp.description FILTER html_light %]
<br>
[% END %]
[% ELSE %]
- <font color="red">missing</font>
+ <span class="warning">missing</span>
[% END %]
</td>
</tr>
<tr>
- <th align="right" valign="top">
- <a href="editversions.cgi?product=[% product.name FILTER uri %]">Edit
-versions:</a>
+ <th>
+ <a href="editversions.cgi?product=[% product.name FILTER uri %]">Edit versions:</a>
</th>
<td>
[%- IF product.versions.size -%]
- [% FOREACH v = product.versions %]
- [% v.name FILTER html %]
- <br>
- [% END %]
+ <div class="multi-columns">
+ [% FOREACH v = product.versions %]
+ [% v.name FILTER html %]<br>
+ [% END %]
+ </div>
[% ELSE %]
- <font color="red">missing</font>
+ <span class="warning">missing</span>
[% END %]
</td>
</tr>
[% IF Param('usetargetmilestone') %]
<tr>
- <th align="right" valign="top">
+ <th>
<a href="editmilestones.cgi?product=[% product.name FILTER uri %]">
Edit milestones:</a>
</th>
<td>
[%- IF product.milestones.size -%]
- [%- FOREACH m = product.milestones -%]
- [% m.name FILTER html %]
- <br>
- [% END %]
+ <div class="multi-columns">
+ [%- FOREACH m = product.milestones -%]
+ [% m.name FILTER html %]<br>
+ [% END %]
+ </div>
[% ELSE %]
- <font color="red">missing</font>
+ <span class="warning">missing</span>
[% END %]
</td>
</tr>
[% END %]
<tr>
- <th align="right" valign="top">
+ <th>
<a href="editproducts.cgi?action=editgroupcontrols&product=
[%- product.name FILTER uri %]">
Edit Group Access Controls:
@@ -102,7 +99,7 @@ versions:</a>
<td>
[% IF product.group_controls.size %]
[% FOREACH g = product.group_controls.values.sort("name") %]
- <b>[% g.group.name FILTER html %]:</b>&nbsp;
+ <b>[% g.group.name FILTER html %]:</b>
[% IF g.group.isactive %]
[% group_control.${g.membercontrol} FILTER html %]/
[% group_control.${g.othercontrol} FILTER html %]
@@ -122,9 +119,11 @@ versions:</a>
</td>
</tr>
<tr>
- <th align="right">[% terms.Bugs %]:</th>
- <td><a href="buglist.cgi?product=[% product.name FILTER uri %]">
- [% product.bug_count FILTER html %]</a></td>
+ <th>[% terms.Bugs %]:</th>
+ <td>
+ <a href="buglist.cgi?product=[% product.name FILTER uri %]">
+ [% product.bug_count FILTER html %]</a>
+ </td>
</tr>
</table>