Bug 30871: Add/expand title text for LDR/06 and 008 Type of material
This patch simply adds title elements or clarifies existing title elements to indicate how default values are chosen To test: 1 - Create new record in default editor 2 - Open leader helper, hover over "6-Type of record" and the dropdown 3 - Confirm notes make sense 4 - Open 008 helper 5 - Hover over 'Type of Material' and dropdown 6 - Confirm notes make sense Signed-off-by: David Nind <david@davidnind.com> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
parent
5e5481ea44
commit
9912739231
2 changed files with 4 additions and 4 deletions
|
@ -30,9 +30,9 @@
|
|||
<input type="hidden" name="result" id="result" value="[% result | html %]" />
|
||||
<table id="table_material_types">
|
||||
<tr id="tr_material_types">
|
||||
<td><label for="material_type" title="Select a type of material to specify the variable values">Type of Material</label></td>
|
||||
<td><label for="material_type" title="Select a type of material to specify the variable values. Pre-populated based on Leader/06.">Type of Material</label></td>
|
||||
<td>
|
||||
<select name="material_type" id="material_type" title="Select a type of material to specify the variable values" onchange="changeTypeofMaterial(this.form)">
|
||||
<select name="material_type" id="material_type" title="Select a type of material to specify the variable values. Default selection is based on value in the Leader/06." onchange="changeTypeofMaterial(this.form)">
|
||||
<option value="">Select a type of material</option>
|
||||
</select>
|
||||
</td>
|
||||
|
|
|
@ -47,9 +47,9 @@
|
|||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="f6">6- Type of record</label></td>
|
||||
<td><label for="f6" title="This controls the default configuration of the 008 field">6- Type of record</label></td>
|
||||
<td>
|
||||
<select name="f6" id="f6">
|
||||
<select name="f6" title="The selection here affects the default configuration of the 008 field" id="f6">
|
||||
[% IF ( f6a ) %]
|
||||
<option value="a" selected="selected">a- Language material</option>
|
||||
[% ELSE %]
|
||||
|
|
Loading…
Reference in a new issue