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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/course_reserves/course-details.tt (-17 / +32 lines)
Lines 9-23 Link Here
9
[% INCLUDE 'doc-head-open.inc' %]
9
[% INCLUDE 'doc-head-open.inc' %]
10
<title>Course details for [% course.course_name | html %] &rsaquo; Course reserves &rsaquo; Koha</title>
10
<title>Course details for [% course.course_name | html %] &rsaquo; Course reserves &rsaquo; Koha</title>
11
[% INCLUDE 'doc-head-close.inc' %]
11
[% INCLUDE 'doc-head-close.inc' %]
12
12
[% FILTER collapse %]
13
<style>
13
    <style>
14
    #instructors {
14
        #instructors {
15
        float: left;
15
            float: left;
16
    }
16
        }
17
    .instructor_line {
17
        .instructor_line {
18
        padding: 0 .1em;
18
            padding: 0 .1em;
19
    }
19
        }
20
</style>
20
        .biblio-level-info {
21
            background-color: #f3f3f3;
22
            border-radius:5px;
23
            box-shadow: 0px 1px 1px 0px rgba(50, 50, 50, 0.2);
24
            display:block;
25
            font-style: italic;
26
            margin: -3px 0 0 -3px;
27
            padding:.5em;
28
            position:absolute;
29
        }
30
    </style>
31
[% END %]
21
</head>
32
</head>
22
33
23
<body id="courses_course_details" class="course">
34
<body id="courses_course_details" class="course">
Lines 121-126 Link Here
121
132
122
                            [% IF cr.item %]
133
                            [% IF cr.item %]
123
                                <td><a href="/cgi-bin/koha/catalogue/moredetail.pl?itemnumber=[% cr.item.itemnumber | uri %]&amp;biblionumber=[% cr.biblio.biblionumber | uri %]&amp;bi=[% cr.biblioitem.biblioitemnumber | uri %]">[% cr.item.barcode | html %]</a></td>
134
                                <td><a href="/cgi-bin/koha/catalogue/moredetail.pl?itemnumber=[% cr.item.itemnumber | uri %]&amp;biblionumber=[% cr.biblio.biblionumber | uri %]&amp;bi=[% cr.biblioitem.biblioitemnumber | uri %]">[% cr.item.barcode | html %]</a></td>
135
136
137
124
                                <td>[% cr.item.itemcallnumber | html %]</td>
138
                                <td>[% cr.item.itemcallnumber | html %]</td>
125
                                [% IF item_level_itypes %]
139
                                [% IF item_level_itypes %]
126
                                <td>
140
                                <td>
Lines 221-233 Link Here
221
                                    [% END %]
235
                                    [% END %]
222
                                </td>
236
                                </td>
223
                            [% ELSE # record-level course reserve %]
237
                            [% ELSE # record-level course reserve %]
224
                                [% IF ( item_level_itypes ) %]
238
                                <td>
225
                                    <td colspan="7">
239
                                    <div class="biblio-level-info">Item information is not available for record-level course reserve</div>
226
                                [% ELSE %]
240
                                </td>
227
                                    <td colspan="6">
241
                                <td><!-- Call number --></td>
228
                                [% END %]
242
                                <td><!-- Item type --></td>
229
                                        <em>Information not available for record-level course reserve</em>
243
                                <td><!-- Collection --></td>
230
                                    </td>
244
                                <td><!-- Location --></td>
245
                                <td><!-- Home library --></td>
246
                                <td><!-- Holding library --></td>
231
                            [% END %]
247
                            [% END %]
232
248
233
                            <td>[% IF (cr.staff_note) %]
249
                            <td>[% IF (cr.staff_note) %]
234
- 

Return to bug 30911