diff options
author | Emmanuel Seyman <emmanuel@seyman.fr> | 2016-05-16 17:39:53 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2016-05-16 17:39:53 +0200 |
commit | abfe21fd2b8579b30d097f0868c88e6fc3928c57 (patch) | |
tree | 87f971ac60fa3d9c90a87d2594c77f80f93a453c /template | |
parent | c5a676ad9f8e3d82e3ae27087114c321204ee0d5 (diff) | |
download | bugzilla-abfe21fd2b8579b30d097f0868c88e6fc3928c57.tar.gz bugzilla-abfe21fd2b8579b30d097f0868c88e6fc3928c57.tar.xz |
Bug 1272247 - Small inconsistencies in layout when editing field values
r=dylan
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/admin/fieldvalues/create.html.tmpl | 4 | ||||
-rw-r--r-- | template/en/default/admin/fieldvalues/edit.html.tmpl | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/template/en/default/admin/fieldvalues/create.html.tmpl b/template/en/default/admin/fieldvalues/create.html.tmpl index 8d1dbc8b9..8bb28e8b1 100644 --- a/template/en/default/admin/fieldvalues/create.html.tmpl +++ b/template/en/default/admin/fieldvalues/create.html.tmpl @@ -26,7 +26,7 @@ <form method="post" action="editvalues.cgi"> <table id="admin_table_edit"> <tr> - <th><label for="value">Value:</label></th> + <th><label for="value">Field Value:</label></th> <td> <input id="value" name="value" size="30" maxlength="[% constants.MAX_FIELD_VALUE_SIZE FILTER none %]" required> @@ -82,7 +82,7 @@ </table> <input type="submit" id="create" value="Add"> <input type="hidden" name="action" value="new"> - <input type="hidden" name='field' value="[% field.name FILTER html %]"> + <input type="hidden" name="field" value="[% field.name FILTER html %]"> <input type="hidden" name="token" value="[% token FILTER html %]"> </form> diff --git a/template/en/default/admin/fieldvalues/edit.html.tmpl b/template/en/default/admin/fieldvalues/edit.html.tmpl index 2630fee92..9d956e8cb 100644 --- a/template/en/default/admin/fieldvalues/edit.html.tmpl +++ b/template/en/default/admin/fieldvalues/edit.html.tmpl @@ -30,7 +30,7 @@ value="[% value.name FILTER html %]"> [%- value.name FILTER html %] [% ELSE %] - <input id="value_new" name="value_new" size="20" + <input id="value_new" name="value_new" size="30" maxlength="[% constants.MAX_FIELD_VALUE_SIZE FILTER none %]" value="[% value.name FILTER html %]" required> [% END %] |