Lines 1-33
Link Here
|
1 |
<fieldset id="dvd-standard-fieldset" class="rows"> |
1 |
<fieldset id="dvd-standard-fieldset" class="rows"> |
2 |
<legend>DVD details</legend> |
2 |
<legend>DVD details</legend> |
3 |
<ol id="publication-standard-fields"> |
3 |
<ol id="dvd-standard-fields"> |
4 |
<li> |
4 |
[% PROCESS ill_text_input_field id = 'title' label = t('Title') value = whole.value.other.title %] |
5 |
<label for="title">Title:</label> |
5 |
[% PROCESS ill_text_input_field id = 'author' label = t('Author') value = whole.value.other.author %] |
6 |
<input type="text" name="title" id="title" value="[% whole.value.other.title | html %]" /> |
6 |
[% PROCESS ill_text_input_field id = 'studio' label = t('Studio') value = whole.value.other.studio %] |
7 |
</li> |
7 |
[% PROCESS ill_text_input_field id = 'genre' label = t('Genre') value = whole.value.other.genre %] |
8 |
<li> |
8 |
[% PROCESS ill_text_input_field id = 'year' label = t('Year') value = whole.value.other.year %] |
9 |
<label for="author">Author:</label> |
9 |
[% PROCESS ill_text_input_field id = 'format' label = t('Format') value = whole.value.other.format %] |
10 |
<input type="text" name="author" id="author" value="[% whole.value.other.author | html %]" /> |
10 |
[% PROCESS ill_text_input_field id = 'language' label = t('Language') value = whole.value.other.language %] |
11 |
</li> |
|
|
12 |
<li> |
13 |
<label for="studio">Studio:</label> |
14 |
<input type="text" name="studio" id="studio" value="[% whole.value.other.studio | html %]" /> |
15 |
</li> |
16 |
<li> |
17 |
<label for="genre">Genre:</label> |
18 |
<input type="text" name="genre" id="genre" value="[% whole.value.other.genre | html %]" /> |
19 |
</li> |
20 |
<li> |
21 |
<label for="year">Year:</label> |
22 |
<input type="text" name="year" id="year" value="[% whole.value.other.year | html %]" /> |
23 |
</li> |
24 |
<li> |
25 |
<label for="format">Format:</label> |
26 |
<input type="text" name="format" id="format" value="[% whole.value.other.format | html %]" /> |
27 |
</li> |
28 |
<li> |
29 |
<label for="language">Language:</label> |
30 |
<input type="text" name="language" id="language" value="[% whole.value.other.language | html %]" /> |
31 |
</li> |
32 |
</ol> |
11 |
</ol> |
33 |
</fieldset> |
12 |
</fieldset> |
34 |
- |
|
|