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

(-)a/Koha/ILL/Backend/Standard.pm (+4 lines)
Lines 928-938 sub _get_core_fields { Link Here
928
        conference_date => 'Conference date',
928
        conference_date => 'Conference date',
929
        doi             => 'DOI',
929
        doi             => 'DOI',
930
        editor          => 'Editor',
930
        editor          => 'Editor',
931
        format          => 'Format',
932
        genre           => 'Genre',
931
        institution     => 'Institution',
933
        institution     => 'Institution',
932
        isbn            => 'ISBN',
934
        isbn            => 'ISBN',
933
        issn            => 'ISSN',
935
        issn            => 'ISSN',
934
        issue           => 'Issue',
936
        issue           => 'Issue',
935
        item_date       => 'Date',
937
        item_date       => 'Date',
938
        language        => 'Language',
936
        pages           => 'Pages',
939
        pages           => 'Pages',
937
        pagination      => 'Pagination',
940
        pagination      => 'Pagination',
938
        paper_author    => 'Paper author',
941
        paper_author    => 'Paper author',
Lines 943-948 sub _get_core_fields { Link Here
943
        published_place => 'Place of publication',
946
        published_place => 'Place of publication',
944
        publisher       => 'Publisher',
947
        publisher       => 'Publisher',
945
        sponsor         => 'Sponsor',
948
        sponsor         => 'Sponsor',
949
        studio          => 'Studio',
946
        title           => 'Title',
950
        title           => 'Title',
947
        type            => 'Type',
951
        type            => 'Type',
948
        venue           => 'Venue',
952
        venue           => 'Venue',
(-)a/Koha/ILL/Backend/shared-includes/forms/dvd.inc (-1 / +33 lines)
Line 0 Link Here
0
- 
1
<fieldset id="dvd-standard-fieldset" class="rows">
2
    <legend>DVD details</legend>
3
    <ol id="publication-standard-fields">
4
        <li>
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="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>
33
</fieldset>

Return to bug 35570