View | Details | Raw Unified | Return to bug 36221
Collapse All | Expand All

(-)a/Koha/ILL/Backend/intra-includes/create.inc (-1 / +2 lines)
Lines 1-4 Link Here
1
[% SET koha_version = Koha.Version %]
1
[% SET koha_version = Koha.Version %]
2
[% cwd = whole.cwd %]
3
[% PROCESS "${cwd}/shared-includes/form_input_helpers.inc" %]
2
[% IF whole.error %]
4
[% IF whole.error %]
3
[% IF whole.status == 'missing_identifier' %]
5
[% IF whole.status == 'missing_identifier' %]
4
<p><em>Please Note:</em> Mandatory field Identifier is missing.</p>
6
<p><em>Please Note:</em> Mandatory field Identifier is missing.</p>
Lines 73-79 Link Here
73
      </li>
75
      </li>
74
    </ol>
76
    </ol>
75
  </fieldset>
77
  </fieldset>
76
  [% cwd = whole.cwd %]
77
  [% type = whole.value.other.type %]
78
  [% type = whole.value.other.type %]
78
  [% IF type %]
79
  [% IF type %]
79
      [% INCLUDE "${cwd}/shared-includes/forms/${type}.inc" %]
80
      [% INCLUDE "${cwd}/shared-includes/forms/${type}.inc" %]
(-)a/Koha/ILL/Backend/intra-includes/edititem.inc (-1 / +2 lines)
Lines 1-3 Link Here
1
[% cwd = whole.cwd %]
2
[% PROCESS "${cwd}/shared-includes/form_input_helpers.inc" %]
1
[% IF whole.error %]
3
[% IF whole.error %]
2
[% IF whole.status == 'missing_type' %]
4
[% IF whole.status == 'missing_type' %]
3
<p><em>Please Note:</em> Mandatory field Type is missing.</p>
5
<p><em>Please Note:</em> Mandatory field Type is missing.</p>
Lines 66-72 Link Here
66
        </li>
68
        </li>
67
      </ol>
69
      </ol>
68
    </fieldset>
70
    </fieldset>
69
    [% cwd = whole.cwd %]
70
    [% type = whole.value.other.type %]
71
    [% type = whole.value.other.type %]
71
    [% IF type %]
72
    [% IF type %]
72
        [% INCLUDE "${cwd}/shared-includes/forms/${type}.inc" %]
73
        [% INCLUDE "${cwd}/shared-includes/forms/${type}.inc" %]
(-)a/Koha/ILL/Backend/opac-includes/create.inc (-9 / +9 lines)
Lines 1-3 Link Here
1
[% PROCESS 'i18n.inc' %]
2
[% cwd = whole.cwd %]
3
[% PROCESS "${cwd}/shared-includes/form_input_helpers.inc" %]
1
[% IF whole.error %]
4
[% IF whole.error %]
2
[% IF whole.status == 'missing_identifier' %]
5
[% IF whole.status == 'missing_identifier' %]
3
<p><em>Please Note:</em> Mandatory field Identifier is missing.</p>
6
<p><em>Please Note:</em> Mandatory field Identifier is missing.</p>
Lines 21-29 Link Here
21
  <fieldset class="rows">
24
  <fieldset class="rows">
22
    <legend>General details</legend>
25
    <legend>General details</legend>
23
    <ol id="general-standard-fields">
26
    <ol id="general-standard-fields">
27
    [% WRAPPER ill_select_field required = 1 id = 'type' label = t('Type') %]
24
      <li>
28
      <li>
25
        <label class="required" for="type">Type:</label>
26
        <select name="type" id="type">
27
          <option value=""/>
29
          <option value=""/>
28
          [% IF whole.value.other.type.lower == "book" %]
30
          [% IF whole.value.other.type.lower == "book" %]
29
          <option value="book" selected="selected">Book</option>
31
          <option value="book" selected="selected">Book</option>
Lines 70-80 Link Here
70
          [% ELSE %]
72
          [% ELSE %]
71
          <option value="resource">Generic resource</option>
73
          <option value="resource">Generic resource</option>
72
          [% END %]
74
          [% END %]
73
        </select>
75
        </li>
74
      </li>
76
    [% END #ill_select_field %]
75
    </ol>
77
    </ol>
76
  </fieldset>
78
  </fieldset>
77
  [% cwd = whole.cwd %]
78
  [% type = whole.value.other.type %]
79
  [% type = whole.value.other.type %]
79
  [% IF type %]
80
  [% IF type %]
80
      [% INCLUDE "${cwd}/shared-includes/forms/${type}.inc" %]
81
      [% INCLUDE "${cwd}/shared-includes/forms/${type}.inc" %]
Lines 84-91 Link Here
84
    <legend>Patron options</legend>
85
    <legend>Patron options</legend>
85
    <ol>
86
    <ol>
86
      <li>
87
      <li>
87
        <label class="required" for="branchcode">Destination library:</label>
88
        [% WRAPPER ill_select_field required = 1 id = 'branchcode' label = t('Destination library') %]
88
        <select id="branchcode" name="branchcode">
89
          <option value="" />
89
          <option value="" />
90
          [% FOREACH branch IN branches %]
90
          [% FOREACH branch IN branches %]
91
            [% IF whole.value.other.branchcode && branch.branchcode == whole.value.other.branchcode %]
91
            [% IF whole.value.other.branchcode && branch.branchcode == whole.value.other.branchcode %]
Lines 98-104 Link Here
98
            </option>
98
            </option>
99
            [% END %]
99
            [% END %]
100
          [% END %]
100
          [% END %]
101
        </select>
101
        [% END #ill_select_field %]
102
      </li>
102
      </li>
103
    </ol>
103
    </ol>
104
  </fieldset>
104
  </fieldset>
Lines 122-125 Link Here
122
    [% INCLUDE "${cwd}/shared-includes/shared.js" %]
122
    [% INCLUDE "${cwd}/shared-includes/shared.js" %]
123
    // ]]>
123
    // ]]>
124
</script>
124
</script>
125
[% END %]
125
[% END %]
(-)a/Koha/ILL/Backend/shared-includes/form_input_helpers.inc (+36 lines)
Line 0 Link Here
1
[% BLOCK ill_text_input_field %]
2
    <li>
3
      <label for="[% id | html %]">[% label | html %][% IF required %]*[% END %]</label>
4
      <input type="[% type | html %]" name="[% id | html %]" id="[% id | html%]" value="[% value | html %]" />
5
    </li>
6
    [% SET required = 0 %]
7
[% END %]
8
9
[% BLOCK ill_select_field %]
10
      <label for="[% id | html %]">[% label | html %][% IF required %]*[% END %]</label>
11
      <select name="[% id | html %]" id="[% id | html %]">
12
        [% content | $raw %]
13
      </select>
14
      [% SET required = 0 %]
15
[% END %]
16
17
[% BLOCK book_text_input_fields %]
18
  [% PROCESS ill_text_input_field id = 'title' label = t('Title') value = whole.value.other.title %]
19
  [% PROCESS ill_text_input_field id = 'author' label = t('Author') value = whole.value.other.author %]
20
  [% PROCESS ill_text_input_field id = 'editor' label = t('Editor') value = whole.value.other.editor %]
21
  [% PROCESS ill_text_input_field id = 'publisher' label = t('Publisher') value = whole.value.other.publisher %]
22
  [% PROCESS ill_text_input_field id = 'published_place' label = t('Place of publication') value = whole.value.other.published_place %]
23
  [% PROCESS ill_text_input_field id = 'year' label = t('Year') value = whole.value.other.year %]
24
  [% PROCESS ill_text_input_field id = 'part_edition' label = t('Part / Edition') value = whole.value.other.part_edition %]
25
  [% PROCESS ill_text_input_field id = 'volume' label = t('Volume') value = whole.value.other.volume %]
26
  [% PROCESS ill_text_input_field id = 'isbn' label = t('ISBN') value = whole.value.other.isbn %]
27
  [% PROCESS ill_text_input_field id = 'doi' label = t('DOI') value = whole.value.other.doi %]
28
[% END %]
29
30
[% BLOCK journal_text_input_fields %]
31
  [% PROCESS ill_text_input_field id = 'title' label = t('Title') value = whole.value.other.title %]
32
  [% PROCESS ill_text_input_field id = 'volume' label = t('Volume') value = whole.value.other.volume %]
33
  [% PROCESS ill_text_input_field id = 'issue' label = t('Issue number') value = whole.value.other.issue %]
34
  [% PROCESS ill_text_input_field id = 'year' label = t('Year') value = whole.value.other.issue %]
35
  [% PROCESS ill_text_input_field id = 'issn' label = t('ISSN') value = whole.value.other.issn %]
36
[% END %]
(-)a/Koha/ILL/Backend/shared-includes/forms/article.inc (-40 / +6 lines)
Lines 1-50 Link Here
1
<fieldset id="journal-standard-fieldset" class="rows">
1
<fieldset id="journal-standard-fieldset" class="rows">
2
    <legend>Journal details</legend>
2
    <legend>Journal details</legend>
3
    <ol id="journal-standard-fields">
3
    <ol id="journal-standard-fields">
4
        <li>
4
        [% PROCESS journal_text_input_fields %]
5
            <label for="title">Title:</label>
6
            <input type="text" name="title" id="title" value="[% whole.value.other.title | html %]" />
7
        </li>
8
        <li>
9
            <label for="volume">Volume:</label>
10
            <input type="text" name="volume" id="volume" value="[% whole.value.other.volume | html %]" />
11
        </li>
12
        <li>
13
            <label for="issue">Issue number:</label>
14
            <input type="text" name="issue" id="issue" value="[% whole.value.other.issue | html %]" />
15
        </li>
16
        <li>
17
            <label for="year">Year:</label>
18
            <input type="text" name="year" id="year" value="[% whole.value.other.year | html %]" />
19
        </li>
20
        <li>
21
            <label for="issn">ISSN:</label>
22
            <input type="text" name="issn" id="issn" value="[% whole.value.other.issn | html %]" />
23
        </li>
24
    </ol>
5
    </ol>
25
</fieldset>
6
</fieldset>
26
<fieldset id="article-standard-fieldset" class="rows">
7
<fieldset id="article-standard-fieldset" class="rows">
27
    <legend>Article details</legend>
8
    <legend>Article details</legend>
28
    <ol id="article-standard-fields">
9
    <ol id="article-standard-fields">
29
        <li>
10
        [% PROCESS ill_text_input_field id = 'article_title' label = t('Article title') value = whole.value.other.article_title %]
30
            <label for="article_title">Article title:</label>
11
        [% PROCESS ill_text_input_field id = 'article_author' label = t('Article author') value = whole.value.other.article_author %]
31
            <input type="text" name="article_title" id="article_title" value="[% whole.value.other.article_title | html %]" />
12
        [% PROCESS ill_text_input_field id = 'published_date' label = t('Publication date') value = whole.value.other.published_date %]
32
        </li>
13
        [% PROCESS ill_text_input_field id = 'pages' label = t('Pages') value = whole.value.other.pages %]
33
        <li>
14
        [% PROCESS ill_text_input_field id = 'doi' label = t('DOI') value = whole.value.other.doi %]
34
            <label for="article_author">Article author:</label>
35
            <input type="text" name="article_author" id="article_author" value="[% whole.value.other.article_author | html %]" />
36
        </li>
37
        <li>
38
            <label for="published_date">Publication date:</label>
39
            <input type="text" name="published_date" id="published_date" value="[% whole.value.other.published_date | html %]" />
40
        </li>
41
        <li>
42
            <label for="pages">Pages:</label>
43
            <input type="text" name="pages" id="pages" value="[% whole.value.other.pages | html %]" />
44
        </li>
45
        <li>
46
            <label for="doi">DOI:</label>
47
            <input type="text" name="doi" id="doi" value="[% whole.value.other.doi | html %]" />
48
        </li>
49
    </ol>
15
    </ol>
50
</fieldset>
16
</fieldset>
(-)a/Koha/ILL/Backend/shared-includes/forms/book.inc (-40 / +1 lines)
Lines 1-45 Link Here
1
<fieldset id="book-standard-fieldset" class="rows">
1
<fieldset id="book-standard-fieldset" class="rows">
2
    <legend>Book details</legend>
2
    <legend>Book details</legend>
3
    <ol id="publication-standard-fields">
3
    <ol id="publication-standard-fields">
4
        <li>
4
        [% PROCESS book_text_input_fields %]
5
            <label for="title">Title:</label>
6
            <input type="text" name="title" id="title" value="[% whole.value.other.title | html %]" />
7
        </li>
8
        <li>
9
            <label for="author">Author:</label>
10
            <input type="text" name="author" id="author" value="[% whole.value.other.author | html %]" />
11
        </li>
12
        <li>
13
            <label for="editor">Editor:</label>
14
            <input type="text" name="editor" id="editor" value="[% whole.value.other.editor | html %]" />
15
        </li>
16
        <li>
17
            <label for="publisher">Publisher:</label>
18
            <input type="text" name="publisher" id="publisher" value="[% whole.value.other.publisher | html %]" />
19
        </li>
20
        <li>
21
            <label for="published_place">Place of publication:</label>
22
            <input type="text" name="published_place" id="published_place" value="[% whole.value.other.published_place | html %]" />
23
        </li>
24
        <li>
25
            <label for="year">Year:</label>
26
            <input type="text" name="year" id="year" value="[% whole.value.other.year | html %]" />
27
        </li>
28
        <li>
29
            <label for="part_edition">Part / Edition:</label>
30
            <input type="text" name="part_edition" id="part_edition" value="[% whole.value.other.part_edition | html %]" />
31
        </li>
32
        <li>
33
            <label for="volume">Volume:</label>
34
            <input type="text" name="volume" id="volume" value="[% whole.value.other.volume | html %]" />
35
        </li>
36
        <li>
37
            <label for="isbn">ISBN:</label>
38
            <input type="text" name="isbn" id="isbn" value="[% whole.value.other.isbn | html %]" />
39
        </li>
40
        <li>
41
            <label for="doi">DOI:</label>
42
            <input type="text" name="doi" id="doi" value="[% whole.value.other.doi | html %]" />
43
        </li>
44
    </ol>
5
    </ol>
45
</fieldset>
6
</fieldset>
(-)a/Koha/ILL/Backend/shared-includes/forms/chapter.inc (-52 / +4 lines)
Lines 1-62 Link Here
1
<fieldset id="book-standard-fieldset" class="rows">
1
<fieldset id="book-standard-fieldset" class="rows">
2
    <legend>Book details</legend>
2
    <legend>Book details</legend>
3
    <ol id="publication-standard-fields">
3
    <ol id="publication-standard-fields">
4
        <li>
4
        [% PROCESS book_text_input_fields %]
5
            <label for="title">Title:</label>
6
            <input type="text" name="title" id="title" value="[% whole.value.other.title | html %]" />
7
        </li>
8
        <li>
9
            <label for="author">Author:</label>
10
            <input type="text" name="author" id="author" value="[% whole.value.other.author | html %]" />
11
        </li>
12
        <li>
13
            <label for="editor">Editor:</label>
14
            <input type="text" name="editor" id="editor" value="[% whole.value.other.editor | html %]" />
15
        </li>
16
        <li>
17
            <label for="publisher">Publisher:</label>
18
            <input type="text" name="publisher" id="publisher" value="[% whole.value.other.publisher | html %]" />
19
        </li>
20
        <li>
21
            <label for="published_place">Place of publication:</label>
22
            <input type="text" name="published_place" id="published_place" value="[% whole.value.other.published_place | html %]" />
23
        </li>
24
        <li>
25
            <label for="year">Year:</label>
26
            <input type="text" name="year" id="year" value="[% whole.value.other.year | html %]" />
27
        </li>
28
        <li>
29
            <label for="part_edition">Part / Edition:</label>
30
            <input type="text" name="part_edition" id="part_edition" value="[% whole.value.other.part_edition | html %]" />
31
        </li>
32
        <li>
33
            <label for="volume">Volume:</label>
34
            <input type="text" name="volume" id="volume" value="[% whole.value.other.volume | html %]" />
35
        </li>
36
        <li>
37
            <label for="isbn">ISBN:</label>
38
            <input type="text" name="isbn" id="isbn" value="[% whole.value.other.isbn | html %]" />
39
        </li>
40
        <li>
41
            <label for="doi">DOI:</label>
42
            <input type="text" name="doi" id="doi" value="[% whole.value.other.doi | html %]" />
43
        </li>
44
    </ol>
5
    </ol>
45
</fieldset>
6
</fieldset>
46
<fieldset id="chapter-standard-fieldset" class="rows">
7
<fieldset id="chapter-standard-fieldset" class="rows">
47
    <legend>Chapter details</legend>
8
    <legend>Chapter details</legend>
48
    <ol id="chapter-standard-fields">
9
    <ol id="chapter-standard-fields">
49
        <li>
10
        [% PROCESS ill_text_input_field id = 'chapter_author' label = t('Author') value = whole.value.other.chapter_author %]
50
            <label for="chapter_author">Author:</label>
11
        [% PROCESS ill_text_input_field id = 'chapter' label = t('Chapter') value = whole.value.other.chapter %]
51
            <input type="text" name="chapter_author" id="chapter_author" value="[% whole.value.other.chapter_author | html %]" />
12
        [% PROCESS ill_text_input_field id = 'pages' label = t('Pages') value = whole.value.other.pages %]
52
        </li>
53
        <li>
54
            <label for="chapter">Chapter:</label>
55
            <input type="text" name="chapter" id="chapter" value="[% whole.value.other.chapter | html %]" />
56
        </li>
57
        <li>
58
            <label for="pages">Pages:</label>
59
            <input type="text" name="pages" id="pages" value="[% whole.value.other.pages | html %]" />
60
        </li>
61
    </ol>
13
    </ol>
62
</fieldset>
14
</fieldset>
(-)a/Koha/ILL/Backend/shared-includes/forms/conference.inc (-44 / +11 lines)
Lines 1-49 Link Here
1
<fieldset id="conference-standard-fieldset" class="rows">
1
<fieldset id="conference-standard-fieldset" class="rows">
2
    <legend>Conference details</legend>
2
    <legend>Conference details</legend>
3
    <ol id="conference-standard-fields">
3
    <ol id="conference-standard-fields">
4
        <li>
4
        [% PROCESS ill_text_input_field id = 'title' label = t('Conference title') value = whole.value.other.title %]
5
            <label for="title">Conference title:</label>
5
        [% PROCESS ill_text_input_field id = 'publication' label = t('Publication') value = whole.value.other.publication %]
6
            <input type="text" name="title" id="title" value="[% whole.value.other.title | html %]" />
6
        [% PROCESS ill_text_input_field id = 'conference_date' label = t('Conference date') value = whole.value.other.conference_date %]
7
        </li>
7
        [% PROCESS ill_text_input_field id = 'venue' label = t('Venue') value = whole.value.other.venue %]
8
        <li>
8
        [% PROCESS ill_text_input_field id = 'sponsor' label = t('Sponsor') value = whole.value.other.sponsor %]
9
            <label for="publication">Publication:</label>
9
        [% PROCESS ill_text_input_field id = 'volume' label = t('Volume') value = whole.value.other.volume %]
10
            <input type="text" name="publication" id="publication" value="[% whole.value.other.publication | html %]" />
10
        [% PROCESS ill_text_input_field id = 'isbn' label = t('ISBN') value = whole.value.other.isbn %]
11
        </li>
11
        [% PROCESS ill_text_input_field id = 'issn' label = t('ISSN') value = whole.value.other.issn %]
12
        <li>
12
        [% PROCESS ill_text_input_field id = 'part_edition' label = t('Part') value = whole.value.other.part_edition %]
13
            <label for="conference_date">Conference date:</label>
13
        [% PROCESS ill_text_input_field id = 'paper_title' label = t('Paper title') value = whole.value.other.paper_title %]
14
            <input type="text" name="conference_date" id="conference_date" value="[% whole.value.other.conference_date | html %]" />
14
        [% PROCESS ill_text_input_field id = 'paper_author' label = t('Paper author') value = whole.value.other.paper_author %]
15
        </li>
16
        <li>
17
            <label for="venue">Venue:</label>
18
            <input type="text" name="venue" id="venue" value="[% whole.value.other.venue | html %]" />
19
        </li>
20
        <li>
21
            <label for="sponsor">Sponsor:</label>
22
            <input type="text" name="sponsor" id="sponsor" value="[% whole.value.other.sponsor | html %]" />
23
        </li>
24
        <li>
25
            <label for="volume">Volume:</label>
26
            <input type="text" name="volume" id="volume" value="[% whole.value.other.volume | html %]" />
27
        </li>
28
        <li>
29
            <label for="isbn">ISBN:</label>
30
            <input type="text" name="isbn" id="isbn" value="[% whole.value.other.isbn | html %]" />
31
        </li>
32
        <li>
33
            <label for="issn">ISSN:</label>
34
            <input type="text" name="issn" id="issn" value="[% whole.value.other.issn | html %]" />
35
        </li>
36
        <li>
37
            <label for="part_edition">Part:</label>
38
            <input type="text" name="part_edition" id="part_edition" value="[% whole.value.other.part_edition | html %]" />
39
        </li>
40
        <li>
41
            <label for="paper_title">Paper title:</label>
42
            <input type="text" name="paper_title" id="paper_title" value="[% whole.value.other.paper_title | html %]" />
43
        </li>
44
        <li>
45
            <label for="paper_author">Paper author:</label>
46
            <input type="text" name="paper_author" id="paper_author" value="[% whole.value.other.paper_author | html %]" />
47
        </li>
48
    </ol>
15
    </ol>
49
</fieldset>
16
</fieldset>
(-)a/Koha/ILL/Backend/shared-includes/forms/journal.inc (-24 / +2 lines)
Lines 1-29 Link Here
1
<fieldset id="journal-standard-fieldset" class="rows">
1
<fieldset id="journal-standard-fieldset" class="rows">
2
    <legend>Journal details</legend>
2
    <legend>Journal details</legend>
3
    <ol id="journal-standard-fields">
3
    <ol id="journal-standard-fields">
4
        <li>
4
        [% PROCESS journal_text_input_fields %]
5
            <label for="title">Title:</label>
5
        [% PROCESS ill_text_input_field id = 'doi' label = t('DOI') value = whole.value.other.doi %]
6
            <input type="text" name="title" id="title" value="[% whole.value.other.title | html %]" />
7
        </li>
8
        <li>
9
            <label for="volume">Volume:</label>
10
            <input type="text" name="volume" id="volume" value="[% whole.value.other.volume | html %]" />
11
        </li>
12
        <li>
13
            <label for="issue">Issue number:</label>
14
            <input type="text" name="issue" id="issue" value="[% whole.value.other.issue | html %]" />
15
        </li>
16
        <li>
17
            <label for="year">Year:</label>
18
            <input type="text" name="year" id="year" value="[% whole.value.other.year | html %]" />
19
        </li>
20
        <li>
21
            <label for="issn">ISSN:</label>
22
            <input type="text" name="issn" id="issn" value="[% whole.value.other.issn | html %]" />
23
        </li>
24
        <li>
25
            <label for="doi">DOI:</label>
26
            <input type="text" name="doi" id="doi" value="[% whole.value.other.doi | html %]" />
27
        </li>
28
    </ol>
6
    </ol>
29
</fieldset>
7
</fieldset>
(-)a/Koha/ILL/Backend/shared-includes/forms/resource.inc (-48 / +12 lines)
Lines 1-53 Link Here
1
<fieldset id="resource-standard-fieldset" class="rows">
1
<fieldset id="resource-standard-fieldset" class="rows">
2
    <legend>Generic resource details</legend>
2
    <legend>Generic resource details</legend>
3
    <ol id="resource-standard-fields">
3
    <ol id="resource-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" value="[% whole.value.other.title | html %]" />
6
        [% PROCESS ill_text_input_field id = 'editor' label = t('Editor') value = whole.value.other.editor %]
7
        </li>
7
        [% PROCESS ill_text_input_field id = 'publisher' label = t('Publisher') value = whole.value.other.publisher %]
8
        <li>
8
        [% PROCESS ill_text_input_field id = 'published_place' label = t('Place of publication') value = whole.value.other.published_place %]
9
            <label for="author">Author:</label>
9
        [% PROCESS ill_text_input_field id = 'year' label = t('Year') value = whole.value.other.year %]
10
            <input type="text" name="author" id="author" value="[% whole.value.other.author | html %]" />
10
        [% PROCESS ill_text_input_field id = 'part_edition' label = t('Part / Edition') value = whole.value.other.part_edition %]
11
        </li>
11
        [% PROCESS ill_text_input_field id = 'volume' label = t('Volume') value = whole.value.other.volume %]
12
        <li>
12
        [% PROCESS ill_text_input_field id = 'pages' label = t('Pages') value = whole.value.other.pages %]
13
            <label for="editor">Editor:</label>
13
        [% PROCESS ill_text_input_field id = 'isbn' label = t('ISBN') value = whole.value.other.isbn %]
14
            <input type="text" name="editor" id="editor" value="[% whole.value.other.editor | html %]" />
14
        [% PROCESS ill_text_input_field id = 'issn' label = t('ISSN') value = whole.value.other.issn %]
15
        </li>
15
        [% PROCESS ill_text_input_field id = 'doi' label = t('DOI') value = whole.value.other.doi %]
16
        <li>
17
            <label for="publisher">Publisher:</label>
18
            <input type="text" name="publisher" id="publisher" value="[% whole.value.other.publisher | html %]" />
19
        </li>
20
        <li>
21
            <label for="published_place">Place of publication:</label>
22
            <input type="text" name="published_place" id="published_place" value="[% whole.value.other.published_place | html %]" />
23
        </li>
24
        <li>
25
            <label for="year">Year:</label>
26
            <input type="text" name="year" id="year" value="[% whole.value.other.year | html %]" />
27
        </li>
28
        <li>
29
            <label for="part_edition">Part / Edition:</label>
30
            <input type="text" name="part_edition" id="part_edition" value="[% whole.value.other.part_edition | html %]" />
31
        </li>
32
        <li>
33
            <label for="volume">Volume:</label>
34
            <input type="text" name="volume" id="volume" value="[% whole.value.other.volume | html %]" />
35
        </li>
36
        <li>
37
            <label for="pages">Pages:</label>
38
            <input type="text" name="pages" id="pages" value="[% whole.value.other.pages | html %]" />
39
        </li>
40
        <li>
41
            <label for="isbn">ISBN:</label>
42
            <input type="text" name="isbn" id="isbn" value="[% whole.value.other.isbn | html %]" />
43
        </li>
44
        <li>
45
            <label for "issn">ISSN:</label>
46
            <input type="text" name="issn" id="issn" value="[% whole.value.other.issn | html %]" />
47
        </li>
48
        <li>
49
            <label for="doi">DOI:</label>
50
            <input type="text" name="doi" id="doi" value="[% whole.value.other.doi | html %]" />
51
        </li>
52
    </ol>
16
    </ol>
53
</fieldset>
17
</fieldset>
(-)a/Koha/ILL/Backend/shared-includes/forms/thesis.inc (-21 / +5 lines)
Lines 1-25 Link Here
1
<fieldset id="thesis-standard-fieldset" class="rows">
1
<fieldset id="thesis-standard-fieldset" class="rows">
2
    <legend>Thesis details</legend>
2
    <legend>Thesis details</legend>
3
    <ol id="thesis-standard-fields">
3
    <ol id="thesis-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 = 'institution' label = t('Institution') value = whole.value.other.institution %]
7
        </li>
7
        [% PROCESS ill_text_input_field id = 'published_date' label = t('Publication date') value = whole.value.other.published_date %]
8
        <li>
8
        [% PROCESS ill_text_input_field id = 'doi' label = t('DOI') value = whole.value.other.doi %]
9
            <label for="author">Author:</label>
10
            <input type="text" name="author" id="author" value="[% whole.value.other.author | html %]" />
11
        </li>
12
        <li>
13
            <label for="institution">Institution:</label>
14
            <input type="text" name="institution" id="institution" value="[% whole.value.other.institution | html %]" />
15
        </li>
16
        <li>
17
            <label for="published_date">Publication date:</label>
18
            <input type="text" name="published_date" id="published_date" value="[% whole.value.other.published_date | html %]" />
19
        </li>
20
        <li>
21
            <label for="doi">DOI:</label>
22
            <input type="text" name="doi" id="doi" value="[% whole.value.other.doi | html %]" />
23
        </li>
24
    </ol>
9
    </ol>
25
</fieldset>
10
</fieldset>
26
- 

Return to bug 36221