1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
|
<fieldset id="node_image_fields">
<legend>Image to illustrate this page</legend>
<div class="edit_form_group" id="node_image_group">
<label for="node_image">
[% IF conflict %]
Current image:
[% ELSE %]
URL of image:
[% END %]
</label>
<div class="edit_box">
<input type="text" size="50" id="node_image" name="node_image"
value="[% node_image %]" />
[% INCLUDE node_photo_notes.tt %]
</div>
[% IF conflict %]
<div class="conflict_group">
<label>Your image:</label>
<div class="conflict_box">
[% CGI.escapeHTML(new_node_image) %]
</div>
</div>
[% END %]
</div>
<div class="edit_form_group" id="node_image_copyright_group">
<label for="node_image_copyright">
[% IF conflict %]
Current copyright holder:
[% ELSE %]
Name of image copyright holder:
[% END %]
</label>
<div class="edit_box">
<input type="text" size="50" id="node_image_copyright"
name="node_image_copyright" value="[% node_image_copyright %]" />
</div>
[% IF conflict %]
<div class="conflict_group">
<label>Your copyright holder:</label>
<div class="conflict_box">
[% CGI.escapeHTML(new_node_image_copyright) %]
</div>
</div>
[% END %]
</div>
<div class="edit_form_group" id="node_image_licence_group">
<label for="node_image_licence">
[% IF conflict %]
Current licence:
[% ELSE %]
URL of image licence:
[% END %]
</label>
<div class="edit_box">
<input type="text" size="50" id="node_image_licence"
name="node_image_licence" value="[% node_image_licence %]" />
</div>
[% IF conflict %]
<div class="conflict_group">
<label>Your licence:</label>
<div class="conflict_box">
[% CGI.escapeHTML(new_node_image_licence) %]
</div>
</div>
[% END %]
</div>
<div class="edit_form_group" id="node_image_info_group">
<label for="node_image_url">
[% IF conflict %]
Current info page:
[% ELSE %]
URL of image's info page:
[% END %]
</label>
<div class="edit_box">
<input type="text" size="50" id="node_image_url"
name="node_image_url" value="[% node_image_url %]" />
</div>
[% IF conflict %]
<div class="conflict_group">
<label>Your info page:</label>
<div class="conflict_box">
[% CGI.escapeHTML(new_node_image_url) %]
</div>
</div>
[% END %]
</div>
</fieldset>
|