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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-course-details.tt (-4 / +4 lines)
Lines 30-37 Link Here
30
                <h2>Course reserves for <i>[% course.course_name | html %]</i></h2>
30
                <h2>Course reserves for <i>[% course.course_name | html %]</i></h2>
31
                <div class="rows">
31
                <div class="rows">
32
                    <ol>
32
                    <ol>
33
                        [% IF ( course.term ) %]<li><span class="label">Term:</span> [% AuthorisedValues.GetByCode( 'TERM', course.term ) | html %]</li>[% END %]
33
                        [% IF ( course.term ) %]<li><span class="label">Term:</span> [% AuthorisedValues.GetByCode( 'TERM', course.term, 1 ) | html %]</li>[% END %]
34
                        <li><span class="label">Department:</span> [% AuthorisedValues.GetByCode( 'DEPARTMENT', course.department ) | html %]</li>
34
                        <li><span class="label">Department:</span> [% AuthorisedValues.GetByCode( 'DEPARTMENT', course.department, 1 ) | html %]</li>
35
                        [% IF ( course.course_number ) %]<li><span class="label">Course number:</span> [% course.course_number | html %]</li>[% END %]
35
                        [% IF ( course.course_number ) %]<li><span class="label">Course number:</span> [% course.course_number | html %]</li>[% END %]
36
                        [% IF ( course.section ) %]<li><span class="label">Section:</span> [% course.section | html %]</li>[% END %]
36
                        [% IF ( course.section ) %]<li><span class="label">Section:</span> [% course.section | html %]</li>[% END %]
37
                        [% IF ( course.instructors ) %]
37
                        [% IF ( course.instructors ) %]
Lines 71-78 Link Here
71
                                    <td><a href="opac-detail.pl?biblionumber=[% cr.biblio.biblionumber | uri %]">[% cr.biblio.title | html %]</a></td>
71
                                    <td><a href="opac-detail.pl?biblionumber=[% cr.biblio.biblionumber | uri %]">[% cr.biblio.title | html %]</a></td>
72
                                    <td>[% cr.biblio.author | html %]</td>
72
                                    <td>[% cr.biblio.author | html %]</td>
73
                                    <td>[% ItemTypes.GetDescription( cr.item.itype ) | html %]</td>
73
                                    <td>[% ItemTypes.GetDescription( cr.item.itype ) | html %]</td>
74
                                    <td>[% Branches.GetName( cr.item.holdingbranch ) | html %] <br/> <i>[% AuthorisedValues.GetByCode( 'LOC', cr.item.location ) | html %]</i></td>
74
                                    <td>[% Branches.GetName( cr.item.holdingbranch ) | html %] <br/> <i>[% AuthorisedValues.GetByCode( 'LOC', cr.item.location, 1 ) | html %]</i></td>
75
                                    <td>[% AuthorisedValues.GetByCode( 'CCODE', cr.item.ccode ) | html %]</td>
75
                                    <td>[% AuthorisedValues.GetByCode( 'CCODE', cr.item.ccode, 1 ) | html %]</td>
76
                                    <td>[% cr.item.itemcallnumber | html %]</td>
76
                                    <td>[% cr.item.itemcallnumber | html %]</td>
77
                                    <td>[% cr.item.copynumber | html %]</td>
77
                                    <td>[% cr.item.copynumber | html %]</td>
78
                                    <td>[% INCLUDE 'item-status.inc' item=cr.item issue=cr.issue %]</td>
78
                                    <td>[% INCLUDE 'item-status.inc' item=cr.item issue=cr.issue %]</td>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-course-reserves.tt (-1 / +1 lines)
Lines 46-52 Link Here
46
                                    <td>[% AuthorisedValues.GetByCode( 'DEPARTMENT', c.department, 1 ) | html %]</td>
46
                                    <td>[% AuthorisedValues.GetByCode( 'DEPARTMENT', c.department, 1 ) | html %]</td>
47
                                    <td>[% c.course_number | html %]</td>
47
                                    <td>[% c.course_number | html %]</td>
48
                                    <td>[% c.section | html %]</td>
48
                                    <td>[% c.section | html %]</td>
49
                                    <td>[% AuthorisedValues.GetByCode( 'TERM' c.term ) | html %]</td>
49
                                    <td>[% AuthorisedValues.GetByCode( 'TERM' c.term, 1 ) | html %]</td>
50
                                    <td>
50
                                    <td>
51
                                      [% FOREACH i IN c.instructors %]
51
                                      [% FOREACH i IN c.instructors %]
52
                                          <div class="instructor"><span class"inst_surname">[% i.surname | html %]</span>[% IF i.firstname %]<span class="instr_separator">, </span><span class="instr_firstname">[% i.firstname | html %]</span>[% END %]</div>
52
                                          <div class="instructor"><span class"inst_surname">[% i.surname | html %]</span>[% IF i.firstname %]<span class="instr_separator">, </span><span class="instr_firstname">[% i.firstname | html %]</span>[% END %]</div>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt (-3 / +2 lines)
Lines 811-817 Link Here
811
                                    <p class="subscription_closed">This subscription is closed.</p>
811
                                    <p class="subscription_closed">This subscription is closed.</p>
812
                                [% END %]
812
                                [% END %]
813
                                [% IF ( subscription.location ) %]
813
                                [% IF ( subscription.location ) %]
814
                                  <p class="subscription_location">Location: [% AuthorisedValues.GetByCode( 'LOC', subscription.location ) | html %]
814
                                  <p class="subscription_location">Location: [% AuthorisedValues.GetByCode( 'LOC', subscription.location, 1 ) | html %]
815
                                [% END %]
815
                                [% END %]
816
                                [% IF ( subscription.callnumber ) %]
816
                                [% IF ( subscription.callnumber ) %]
817
                                  <p class="subscription_callnumber">Call number: [% subscription.callnumber | html %]</p>
817
                                  <p class="subscription_callnumber">Call number: [% subscription.callnumber | html %]</p>
Lines 1368-1374 Link Here
1368
                                            [% r.course.course_name | html %]
1368
                                            [% r.course.course_name | html %]
1369
                                            <!--[% IF r.course.course_number %] [% r.course.course_number | html %] [% END %]-->
1369
                                            <!--[% IF r.course.course_number %] [% r.course.course_number | html %] [% END %]-->
1370
                                            [% IF r.course.section %] [% r.course.section | html %] [% END %]
1370
                                            [% IF r.course.section %] [% r.course.section | html %] [% END %]
1371
                                            [% IF r.course.term %] [% AuthorisedValues.GetByCode( 'TERM', r.course.term ) | html %] [% END %]
1371
                                            [% IF r.course.term %] [% AuthorisedValues.GetByCode( 'TERM', r.course.term, 1 ) | html %] [% END %]
1372
                                            </a>
1372
                                            </a>
1373
                                        </p>
1373
                                        </p>
1374
                                    [% END %]
1374
                                    [% END %]
1375
- 

Return to bug 22624