aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'template/en/default/admin/components/edit-common.html.tmpl')
-rw-r--r--template/en/default/admin/components/edit-common.html.tmpl16
1 files changed, 9 insertions, 7 deletions
diff --git a/template/en/default/admin/components/edit-common.html.tmpl b/template/en/default/admin/components/edit-common.html.tmpl
index 6ff4e07e6..72300af79 100644
--- a/template/en/default/admin/components/edit-common.html.tmpl
+++ b/template/en/default/admin/components/edit-common.html.tmpl
@@ -15,12 +15,12 @@
[% DEFAULT desc_name = "description" %]
<tr>
- <th class="field_label"><label for="component">Component:</label></th>
+ <th><label for="component">Component:</label></th>
<td><input size="64" maxlength="64" name="component" id="component"
- value="[%- comp.name FILTER html %]"></td>
+ value="[%- comp.name FILTER html %]" required></td>
</tr>
<tr>
- <th class="field_label"><label for="[% desc_name FILTER html %]">Component Description:</label></th>
+ <th><label for="[% desc_name FILTER html %]">Component Description:</label></th>
<td>
[% INCLUDE global/textarea.html.tmpl
name = desc_name
@@ -29,23 +29,25 @@
cols = 64
wrap = 'virtual'
defaultcontent = comp.description
+ mandatory = 1
%]
</td>
</tr>
<tr>
- <th class="field_label"><label for="initialowner">Default Assignee:</label></th>
+ <th><label for="initialowner">Default Assignee:</label></th>
<td>
[% INCLUDE global/userselect.html.tmpl
name => "initialowner"
id => "initialowner"
value => comp.default_assignee.login
size => 64
+ mandatory => 1
%]
</td>
</tr>
[% IF Param('useqacontact') %]
<tr>
- <th class="field_label"><label for="initialqacontact">Default QA contact:</label></th>
+ <th><label for="initialqacontact">Default QA contact:</label></th>
<td>
[% INCLUDE global/userselect.html.tmpl
name => "initialqacontact"
@@ -58,7 +60,7 @@
</tr>
[% END %]
<tr>
- <th class="field_label"><label for="initialcc">Default CC List:</label></th>
+ <th><label for="initialcc">Default CC List:</label></th>
<td>
[% INCLUDE global/userselect.html.tmpl
name => "initialcc"
@@ -69,7 +71,7 @@
%]
<br>
[% IF !Param("usemenuforusers") %]
- <em>Enter user names for the CC list as a comma-separated list.</em>
+ <span class="bz_info">Enter user names for the CC list as a comma-separated list.</span>
[% END %]
</td>
</tr>