Lines 74-80
Link Here
|
74 |
<fieldset class="rows"> |
74 |
<fieldset class="rows"> |
75 |
<ol> |
75 |
<ol> |
76 |
<li> |
76 |
<li> |
77 |
<label for="template_id" style="width:9em">Select a template to be applied: </label> |
77 |
<label for="template_id" style="width:20em">Select a template to be applied: </label> |
78 |
<select name="template_id" id="template_id"> |
78 |
<select name="template_id" id="template_id"> |
79 |
[% FOREACH template IN templates %] |
79 |
[% FOREACH template IN templates %] |
80 |
<option value="[% template.template_id %]">[% template.template_code %]</option> |
80 |
<option value="[% template.template_id %]">[% template.template_code %]</option> |
Lines 82-88
Link Here
|
82 |
</select> |
82 |
</select> |
83 |
</li> |
83 |
</li> |
84 |
<li> |
84 |
<li> |
85 |
<label for="layout_id" style="width:9em">Select a layout to be applied: </label> |
85 |
<label for="layout_id" style="width:20em">Select a layout to be applied: </label> |
86 |
<select name="layout_id" id="layout_id"> |
86 |
<select name="layout_id" id="layout_id"> |
87 |
[% FOREACH layout IN layouts %] |
87 |
[% FOREACH layout IN layouts %] |
88 |
<option value="[% layout.layout_id %]">[% layout.layout_name %]</option> |
88 |
<option value="[% layout.layout_id %]">[% layout.layout_name %]</option> |
Lines 90-96
Link Here
|
90 |
</select> |
90 |
</select> |
91 |
</li> |
91 |
</li> |
92 |
<li> |
92 |
<li> |
93 |
<label for="start_label" style="width:9em">Enter starting label number: </label> |
93 |
<label for="start_label" style="width:20em">Enter starting label position (for PDF): </label> |
94 |
<input type="text" size="5" id="start_label" name="start_label" class="focus" title="Starting label number" value="1"/> |
94 |
<input type="text" size="5" id="start_label" name="start_label" class="focus" title="Starting label number" value="1"/> |
95 |
</li> |
95 |
</li> |
96 |
</ol> |
96 |
</ol> |
97 |
- |
|
|