diff options
Diffstat (limited to 'template/en/default/admin/custom_fields')
-rw-r--r-- | template/en/default/admin/custom_fields/confirm-delete.html.tmpl | 34 | ||||
-rw-r--r-- | template/en/default/admin/custom_fields/edit-common.html.tmpl | 16 |
2 files changed, 25 insertions, 25 deletions
diff --git a/template/en/default/admin/custom_fields/confirm-delete.html.tmpl b/template/en/default/admin/custom_fields/confirm-delete.html.tmpl index 579806137..471d7a1c4 100644 --- a/template/en/default/admin/custom_fields/confirm-delete.html.tmpl +++ b/template/en/default/admin/custom_fields/confirm-delete.html.tmpl @@ -23,23 +23,23 @@ doc_section = "custom-fields.html#delete-custom-fields" %] -<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">Custom Field:</td> - <td valign="top">[% field.name FILTER html %]</td> -</tr> -<tr> - <td valign="top">Description:</td> - <td valign="top">[% field.description FILTER html %]</td> -</tr> -<tr> - <td valign="top">Type:</td> - <td valign="top">[% field_types.${field.type} FILTER html %]</td> -</tr> +<table id="admin_table"> + <tr class="column_header"> + <th>Field</th> + <th>Value</th> + </tr> + <tr> + <td>Custom Field</td> + <td>[% field.name FILTER html %]</td> + </tr> + <tr> + <td>Description</td> + <td>[% field.description FILTER html %]</td> + </tr> + <tr> + <td>Type</td> + <td>[% field_types.${field.type} FILTER html %]</td> + </tr> </table> <h2>Confirmation</h2> diff --git a/template/en/default/admin/custom_fields/edit-common.html.tmpl b/template/en/default/admin/custom_fields/edit-common.html.tmpl index b08b7f23d..f54073cfe 100644 --- a/template/en/default/admin/custom_fields/edit-common.html.tmpl +++ b/template/en/default/admin/custom_fields/edit-common.html.tmpl @@ -12,9 +12,9 @@ [% PROCESS "global/field-descs.none.tmpl" %] -<table border="0" cellspacing="0" cellpadding="5" id="edit_custom_field"> +<table id="admin_table_edit"> <tr> - <th class="narrow_label"><label for="name">Name:</label></th> + <th><label for="name">Name:</label></th> <td> [% IF field %] [% field.name FILTER html %] @@ -34,7 +34,7 @@ </tr> <tr> - <th class="narrow_label"><label for="desc">Description:</label></th> + <th><label for="desc">Description:</label></th> <td> <input type="text" id="desc" name="desc" size="40" value="[% field.description FILTER html %]"> @@ -50,7 +50,7 @@ </tr> <tr> - <th class="narrow_label"><label for="type">Type:</label></th> + <th><label for="type">Type:</label></th> <td> [% IF field %] [% field_types.${field.type} FILTER html %] @@ -72,7 +72,7 @@ </tr> <tr> - <th class="narrow_label"><label for="sortkey">Sortkey:</label></th> + <th><label for="sortkey">Sortkey:</label></th> <td> <input type="text" id="sortkey" name="sortkey" size="6" maxlength="6" value="[% field.sortkey FILTER html %]"> @@ -86,7 +86,7 @@ </tr> <tr> - <th class="narrow_label">Long Description:</th> + <th>Long Description:</th> <td> [% INCLUDE global/textarea.html.tmpl name = 'long_desc' @@ -147,7 +147,7 @@ <a href="editvalues.cgi?field=[% field.name FILTER uri %]">Edit legal values for this field</a>. </td> [% ELSE %] - <th class="narrow_label"> + <th> <label for="reverse_desc">Reverse Relationship Description:</label> </th> <td> @@ -164,7 +164,7 @@ [% END %] [% IF !field || field.is_select %] - <th class="narrow_label"> + <th> <label for="value_field_id"> Field that controls the values<br> that appear in this field: |