Lines 237-244
function set_to_today(id, force) {
Link Here
|
237 |
<ol> |
237 |
<ol> |
238 |
[% FOREACH ite IN item %] |
238 |
[% FOREACH ite IN item %] |
239 |
<li><div class="subfield_line" style="[% ite.visibility %]" id="subfield[% ite.tag %][% ite.subfield %][% ite.random %]"> |
239 |
<li><div class="subfield_line" style="[% ite.visibility %]" id="subfield[% ite.tag %][% ite.subfield %][% ite.random %]"> |
240 |
|
240 |
[% IF ( ite.mandatory ) %] |
241 |
<label>[% ite.subfield %] - [% IF ( ite.mandatory ) %]<b>[% END %][% ite.marc_lib %][% IF ( ite.mandatory ) %] *</b>[% END %]</label> |
241 |
<label class="required">[% ite.subfield %] - [% ite.marc_lib %]</label> |
|
|
242 |
[% ELSE %] |
243 |
<label>[% ite.subfield %] - [% ite.marc_lib %]</label> |
244 |
[% END %] |
242 |
[% ite.marc_value %] |
245 |
[% ite.marc_value %] |
243 |
<input type="hidden" name="tag" value="[% ite.tag %]" /> |
246 |
<input type="hidden" name="tag" value="[% ite.tag %]" /> |
244 |
<input type="hidden" name="subfield" value="[% ite.subfield %]" /> |
247 |
<input type="hidden" name="subfield" value="[% ite.subfield %]" /> |
Lines 246-252
function set_to_today(id, force) {
Link Here
|
246 |
[% IF ( ite.repeatable ) %] |
249 |
[% IF ( ite.repeatable ) %] |
247 |
<span class="buttonPlus" onclick="CloneSubfield('subfield[% ite.tag %][% ite.subfield %][% ite.random %]')">+</span> |
250 |
<span class="buttonPlus" onclick="CloneSubfield('subfield[% ite.tag %][% ite.subfield %][% ite.random %]')">+</span> |
248 |
[% END %] |
251 |
[% END %] |
249 |
|
252 |
[% IF ( ite.mandatory ) %] <span class="required">Required</span>[% END %] |
250 |
</div></li> |
253 |
</div></li> |
251 |
[% END %] |
254 |
[% END %] |
252 |
</ol> |
255 |
</ol> |
253 |
- |
|
|