summaryrefslogtreecommitdiffstats
path: root/template/en/default/admin/milestones
diff options
context:
space:
mode:
Diffstat (limited to 'template/en/default/admin/milestones')
-rw-r--r--template/en/default/admin/milestones/confirm-delete.html.tmpl52
-rw-r--r--template/en/default/admin/milestones/create.html.tmpl3
-rw-r--r--template/en/default/admin/milestones/edit.html.tmpl10
3 files changed, 33 insertions, 32 deletions
diff --git a/template/en/default/admin/milestones/confirm-delete.html.tmpl b/template/en/default/admin/milestones/confirm-delete.html.tmpl
index 2318a76bb..bc8b4eee3 100644
--- a/template/en/default/admin/milestones/confirm-delete.html.tmpl
+++ b/template/en/default/admin/milestones/confirm-delete.html.tmpl
@@ -21,33 +21,33 @@
style_urls = ['skins/standard/admin.css']
%]
-<table border="1" cellpadding="4" cellspacing="0">
-<tr class="column_header">
- <th valign="top" class="left">Field</th>
- <th valign="top" class="left">Value</th>
-</tr>
-<tr>
- <td valign="top">Milestone:</td>
- <td valign="top">[% milestone.name FILTER html %]</td>
-</tr>
-<tr>
- <td valign="top">Milestone of Product:</td>
- <td valign="top">[% product.name FILTER html %]</td>
-</tr>
-<tr>
- <td valign="top">[% terms.Bugs %]:</td>
- <td valign="top">
-[% IF milestone.bug_count %]
- <a title="List of [% terms.bugs %] targetted at milestone '
- [% milestone.name FILTER html %]'"
- href="buglist.cgi?target_milestone=[% milestone.name FILTER uri %]&amp;product=
- [%- product.name FILTER uri %]">
+<table id="admin_table">
+ <tr class="column_header">
+ <th>Field</th>
+ <th>Value</th>
+ </tr>
+ <tr>
+ <td>Milestone</td>
+ <td>[% milestone.name FILTER html %]</td>
+ </tr>
+ <tr>
+ <td>Milestone of Product</td>
+ <td>[% product.name FILTER html %]</td>
+ </tr>
+ <tr>
+ <td>[% terms.Bugs %]</td>
+ <td>
+ [% IF milestone.bug_count %]
+ <a title="List of [% terms.bugs %] targetted at milestone '
+ [%- milestone.name FILTER html %]'"
+ href="buglist.cgi?target_milestone=[% milestone.name FILTER uri %]&amp;product=
+ [%- product.name FILTER uri %]">
[% milestone.bug_count FILTER none %]</a>
-[% ELSE %]
- None
-[% END %]
- </td>
-</tr>
+ [% ELSE %]
+ None
+ [% END %]
+ </td>
+ </tr>
</table>
<h2>Confirmation</h2>
diff --git a/template/en/default/admin/milestones/create.html.tmpl b/template/en/default/admin/milestones/create.html.tmpl
index 31352a963..78ef49a8a 100644
--- a/template/en/default/admin/milestones/create.html.tmpl
+++ b/template/en/default/admin/milestones/create.html.tmpl
@@ -17,11 +17,12 @@
[% PROCESS global/header.html.tmpl
title = title
subheader = subheader
+ style_urls = ['skins/standard/admin.css']
onload = "document.forms['f'].milestone.focus()"
%]
<form name="f" method="post" action="editmilestones.cgi">
- <table border="0" cellpadding="4" cellspacing="0">
+ <table id="admin_table_edit">
<tr>
<th><label for="milestone">Milestone:</label></th>
<td><input id="milestone" size="64" maxlength="64" name="milestone"
diff --git a/template/en/default/admin/milestones/edit.html.tmpl b/template/en/default/admin/milestones/edit.html.tmpl
index 759bd708a..86d0ebc1e 100644
--- a/template/en/default/admin/milestones/edit.html.tmpl
+++ b/template/en/default/admin/milestones/edit.html.tmpl
@@ -17,24 +17,24 @@
[%- product.name FILTER html %]'[% END %]
[% PROCESS global/header.html.tmpl
title = title
+ style_urls = ['skins/standard/admin.css']
onload = "document.forms['f'].milestone.select()"
%]
<form name="f" method="post" action="editmilestones.cgi">
- <table border="0" cellpadding="4" cellspacing="0">
-
+ <table id="admin_table_edit">
<tr>
- <th class="field_label"><label for="milestone">Milestone:</label></th>
+ <th><label for="milestone">Milestone:</label></th>
<td><input id="milestone" size="64" maxlength="64" name="milestone" value="
[%- milestone.name FILTER html %]"></td>
</tr>
<tr>
- <th class="field_label"><label for="sortkey">Sortkey:</label></th>
+ <th><label for="sortkey">Sortkey:</label></th>
<td><input id="sortkey" size="20" maxlength="20" name="sortkey" value="
[%- milestone.sortkey FILTER html %]"></td>
</tr>
<tr>
- <th class="field_label"><label for="isactive">Enabled For [% terms.Bugs %]:</label></th>
+ <th><label for="isactive">Enabled For [% terms.Bugs %]:</label></th>
<td><input id="isactive" name="isactive" type="checkbox" value="1"
[% 'checked="checked"' IF milestone.isactive %]></td>
</tr>