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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/course_reserves/course.tt (-2 / +3 lines)
Lines 1-3 Link Here
1
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
2
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
3
<title>[% IF course_name %] Edit [% course_name | html %] [% ELSE %] New course [% END %] &rsaquo; Course reserves &rsaquo; Koha</title>
4
<title>[% IF course_name %] Edit [% course_name | html %] [% ELSE %] New course [% END %] &rsaquo; Course reserves &rsaquo; Koha</title>
Lines 79-85 Link Here
79
80
80
                        <li>
81
                        <li>
81
                            [% IF terms %]
82
                            [% IF terms %]
82
                                <label for="term">Term:</label>
83
                                <label for="term">[% tp('Semester', 'Term:') | html %]</label>
83
                                <select id="term" name="term">
84
                                <select id="term" name="term">
84
                                    <option value=""></option>
85
                                    <option value=""></option>
85
86
Lines 92-98 Link Here
92
                                    [% END %]
93
                                    [% END %]
93
                                </select>
94
                                </select>
94
                            [% ELSE %]
95
                            [% ELSE %]
95
                                <span class="label">Term: </span>
96
                                <span class="label">[% tp('Semester', 'Term:') | html %] </span>
96
                                <span id="term">No TERM authorised values found! Please create one or more authorised values with the category TERM.</span>
97
                                <span id="term">No TERM authorised values found! Please create one or more authorised values with the category TERM.</span>
97
                            [% END %]
98
                            [% END %]
98
                        </li>
99
                        </li>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-course-details.tt (-2 / +2 lines)
Lines 6-11 Link Here
6
[% USE ItemTypes %]
6
[% USE ItemTypes %]
7
[% USE Branches %]
7
[% USE Branches %]
8
[% USE TablesSettings %]
8
[% USE TablesSettings %]
9
[% PROCESS 'i18n.inc' %]
9
[% INCLUDE 'doc-head-open.inc' %]
10
[% INCLUDE 'doc-head-open.inc' %]
10
<title>Course reserves for [% course.course_name | html %] &rsaquo; [% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha online[% END %] catalog</title>
11
<title>Course reserves for [% course.course_name | html %] &rsaquo; [% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha online[% END %] catalog</title>
11
[% INCLUDE 'doc-head-close.inc' %]
12
[% INCLUDE 'doc-head-close.inc' %]
Lines 40-46 Link Here
40
                    <h1>Course reserves for <em>[% course.course_name | html %]</em></h1>
41
                    <h1>Course reserves for <em>[% course.course_name | html %]</em></h1>
41
                    <div class="rows">
42
                    <div class="rows">
42
                        <ol>
43
                        <ol>
43
                            [% IF ( course.term ) %]<li><span class="label">Term:</span> [% AuthorisedValues.GetByCode( 'TERM', course.term, 1 ) | html %]</li>[% END %]
44
                            [% IF ( course.term ) %]<li><span class="label">[% tp('Semester', 'Term:') | html %]</span> [% AuthorisedValues.GetByCode( 'TERM', course.term, 1 ) | html %]</li>[% END %]
44
                            <li><span class="label">Department:</span> [% AuthorisedValues.GetByCode( 'DEPARTMENT', course.department, 1 ) | html %]</li>
45
                            <li><span class="label">Department:</span> [% AuthorisedValues.GetByCode( 'DEPARTMENT', course.department, 1 ) | html %]</li>
45
                            [% IF ( course.course_number ) %]<li><span class="label">Course number:</span> [% course.course_number | html %]</li>[% END %]
46
                            [% IF ( course.course_number ) %]<li><span class="label">Course number:</span> [% course.course_number | html %]</li>[% END %]
46
                            [% IF ( course.section ) %]<li><span class="label">Section:</span> [% course.section | html %]</li>[% END %]
47
                            [% IF ( course.section ) %]<li><span class="label">Section:</span> [% course.section | html %]</li>[% END %]
47
- 

Return to bug 28898