Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
377e583d
Commit
377e583d
authored
Oct 03, 2011
by
Matt Selsky
Committed by
Frédéric Buclin
Oct 03, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 615636: Labels are badly aligned when editing versions and milestones in admin pages
r/a=LpSolit
parent
613d9ce7
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
13 deletions
+14
-13
edit-common.html.tmpl
template/en/default/admin/components/edit-common.html.tmpl
+7
-6
edit.html.tmpl
template/en/default/admin/components/edit.html.tmpl
+2
-2
edit.html.tmpl
template/en/default/admin/milestones/edit.html.tmpl
+3
-3
edit.html.tmpl
template/en/default/admin/versions/edit.html.tmpl
+2
-2
No files found.
template/en/default/admin/components/edit-common.html.tmpl
View file @
377e583d
...
...
@@ -27,15 +27,16 @@
[% DEFAULT desc_name = "description" %]
<tr>
<th
align="right">Component:
</th>
<td><input size="64" maxlength="64" name="component"
<th
class="field_label"><label for="component">Component:</label>
</th>
<td><input size="64" maxlength="64" name="component"
id="component"
value="[%- comp.name FILTER html %]"></td>
</tr>
<tr>
<th
align="right">Component Description:
</th>
<th
class="field_label"><label for="[% desc_name FILTER html %]">Component Description:</label>
</th>
<td>
[% INCLUDE global/textarea.html.tmpl
name = desc_name
id = desc_name
minrows = 4
cols = 64
wrap = 'virtual'
...
...
@@ -44,7 +45,7 @@
</td>
</tr>
<tr>
<th
align="right
"><label for="initialowner">Default Assignee:</label></th>
<th
class="field_label
"><label for="initialowner">Default Assignee:</label></th>
<td>
[% INCLUDE global/userselect.html.tmpl
name => "initialowner"
...
...
@@ -56,7 +57,7 @@
</tr>
[% IF Param('useqacontact') %]
<tr>
<th
align="right
"><label for="initialqacontact">Default QA contact:</label></th>
<th
class="field_label
"><label for="initialqacontact">Default QA contact:</label></th>
<td>
[% INCLUDE global/userselect.html.tmpl
name => "initialqacontact"
...
...
@@ -69,7 +70,7 @@
</tr>
[% END %]
<tr>
<th
align="right
"><label for="initialcc">Default CC List:</label></th>
<th
class="field_label
"><label for="initialcc">Default CC List:</label></th>
<td>
[% INCLUDE global/userselect.html.tmpl
name => "initialcc"
...
...
template/en/default/admin/components/edit.html.tmpl
View file @
377e583d
...
...
@@ -43,12 +43,12 @@
[% PROCESS "admin/components/edit-common.html.tmpl" %]
<tr>
<t
d><label for="isactive">Enabled For [% terms.Bugs %]:</label></td
>
<t
h class="field_label"><label for="isactive">Enabled For [% terms.Bugs %]:</label></th
>
<td><input id="isactive" name="isactive" type="checkbox" value="1"
[% 'checked="checked"' IF comp.isactive %]></td>
</tr>
<tr>
<t
d>[% terms.Bugs %]:</td
>
<t
h class="field_label">[% terms.Bugs %]:</th
>
<td>
[% IF comp.bug_count > 0 %]
<a title="[% terms.Bugs %] in component '[% comp.name FILTER html %]'"
...
...
template/en/default/admin/milestones/edit.html.tmpl
View file @
377e583d
...
...
@@ -38,17 +38,17 @@
<table border="0" cellpadding="4" cellspacing="0">
<tr>
<th
valign="top
"><label for="milestone">Milestone:</label></th>
<th
class="field_label
"><label for="milestone">Milestone:</label></th>
<td><input id="milestone" size="20" maxlength="20" name="milestone" value="
[%- milestone.name FILTER html %]"></td>
</tr>
<tr>
<th
align="right
"><label for="sortkey">Sortkey:</label></th>
<th
class="field_label
"><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><label for="isactive">Enabled For [% terms.Bugs %]:</label></th>
<th
class="field_label"
><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>
...
...
template/en/default/admin/versions/edit.html.tmpl
View file @
377e583d
...
...
@@ -37,12 +37,12 @@
<table border="0" cellpadding="4" cellspacing="0">
<tr>
<th
valign="top
"><label for="version">Version:</label></th>
<th
class="field_label
"><label for="version">Version:</label></th>
<td><input id="version" size="64" maxlength="64" name="version" value="
[%- version.name FILTER html %]"></td>
</tr>
<tr>
<th><label for="isactive">Enabled For [% terms.Bugs %]:</label></th>
<th
class="field_label"
><label for="isactive">Enabled For [% terms.Bugs %]:</label></th>
<td><input id="isactive" name="isactive" type="checkbox" value="1"
[% 'checked="checked"' IF version.isactive %]></td>
</tr>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment