5db0b526d3ffedd4c64af0aef7835cc31c89b763
[koha-equinox.git] / koha-tmpl / opac-tmpl / bootstrap / en / modules / opac-course-details.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% USE Koha %]
4 [% USE KohaDates %]
5 [% USE AuthorisedValues %]
6 [% USE ItemTypes %]
7 [% USE Branches %]
8 [% USE ColumnsSettings %]
9 [% INCLUDE 'doc-head-open.inc' %]
10 <title>[% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha online[% END %] catalog &rsaquo; Course reserves for [% course.course_name | html %]</title>
11 [% INCLUDE 'doc-head-close.inc' %]
12 [% BLOCK cssinclude %]
13     [% Asset.css("css/datatables.css") | $raw %]
14 [% END %]
15
16 </head>
17 [% INCLUDE 'bodytag.inc' bodyid='opac-course-details' %]
18 [% INCLUDE 'masthead.inc' %]
19
20 <div class="main">
21     <ul class="breadcrumb">
22         <li><a href="/cgi-bin/koha/opac-main.pl">Home</a> <span class="divider">&rsaquo;</span></li>
23         <li><a href="/cgi-bin/koha/opac-course-reserves.pl">Course reserves</a> <span class="divider">&rsaquo;</span></li>
24         <li><a href="#">Course reserves for <i>[% course.course_name | html %]</i></a></li>
25     </ul>
26
27     <div class="container-fluid">
28         <div class="row-fluid">
29             <div class="span12">
30
31                 <h2>Course reserves for <i>[% course.course_name | html %]</i></h2>
32                 <div class="rows">
33                     <ol>
34                         [% IF ( course.term ) %]<li><span class="label">Term:</span> [% AuthorisedValues.GetByCode( 'TERM', course.term, 1 ) | html %]</li>[% END %]
35                         <li><span class="label">Department:</span> [% AuthorisedValues.GetByCode( 'DEPARTMENT', course.department, 1 ) | html %]</li>
36                         [% IF ( course.course_number ) %]<li><span class="label">Course number:</span> [% course.course_number | html %]</li>[% END %]
37                         [% IF ( course.section ) %]<li><span class="label">Section:</span> [% course.section | html %]</li>[% END %]
38                         [% IF ( course.instructors ) %]
39                             <li><span class="label">Instructors:</span>
40                                 <ul>
41                                     [% FOREACH i IN course.instructors %]
42                                         <li><div class="instructor">[% i.firstname | html %] [% i.surname | html %]</div></li>
43                                     [% END %]
44                                 </ul>
45                             </li>
46                         [% END %]
47                         [% IF ( course.public_note ) %]<li><span class="label">Notes:</span> [% course.public_note | $raw %]</li>[% END %]
48                     </ol>
49                 </div>
50
51                 [% IF ( course_reserves ) %]
52                     <table id="course-items-table" class="table table-bordered table-striped table-condensed">
53                         <thead>
54                             <tr>
55                                 <th class="anti-the">Title</th>
56                                 <th>Author</th>
57                                 <th>Item type</th>
58                                 <th>Location</th>
59                                 <th>Collection</th>
60                                 <th>Call number</th>
61                                 <th>Copy number</th>
62                                 <th>Status</th>
63                                 <th class="title-string">Date due</th>
64                                 <th>Notes</th>
65                                 <th>Link</th>
66                             </tr>
67                         </thead>
68
69                         <tbody>
70                             [% FOREACH cr IN course_reserves %]
71                                 <tr>
72                                     <td><a href="opac-detail.pl?biblionumber=[% cr.biblio.biblionumber | uri %]">[% INCLUDE 'biblio-title-head.inc' biblio=cr.biblio %]</a></td>
73                                     <td>[% cr.biblio.author | html %]</td>
74                                     <td>[% ItemTypes.GetDescription( cr.item.itype ) | html %]</td>
75                                     <td>[% Branches.GetName( cr.item.holdingbranch ) | html %] <br/> <i>[% AuthorisedValues.GetByCode( 'LOC', cr.item.location, 1 ) | html %]</i></td>
76                                     <td>[% AuthorisedValues.GetByCode( 'CCODE', cr.item.ccode, 1 ) | html %]</td>
77                                     <td>[% cr.item.itemcallnumber | html %]</td>
78                                     <td>[% cr.item.copynumber | html %]</td>
79                                     <td>[% INCLUDE 'item-status.inc' item=cr.item issue=cr.issue %]</td>
80                                     <td><span title="[% cr.issue.date_due | html %]">[% cr.issue.date_due | $KohaDates  as_due_date => 1 %]</span></td>
81                                     <td>[% IF ( cr.public_note ) %]
82                                             [% cr.public_note | $raw %]
83                                         [% ELSIF ( cr.item.itemnotes ) %]
84                                             [% cr.item.itemnotes | $raw %]
85                                         [% END %]
86                                     </td>
87                                     <td>[% IF (cr.item.uri) %]
88                                             <a href="[% cr.item.uri | url %]">Item URI</a>
89                                         [% ELSIF (cr.biblioitem.url) %]
90                                             <a href="[% cr.biblioitem.url | url %]">Record URL</a>
91                                         [% END %]
92                                     </td>
93                                 </tr>
94                             [% END %]
95                         </tbody>
96                     </table>
97                 [% ELSE %]
98                     <br style="clear:both;" />
99                     <div class="alert alert-info">
100                         <p>No reserves have been selected for this course.</p>
101                     </div>
102                 [% END %]
103             </div> <!-- / .span12 -->
104         </div> <!-- / .row-fluid -->
105     </div> <!-- / .container-fluid -->
106 </div> <!-- / .main -->
107 [% INCLUDE 'opac-bottom.inc' %]
108 [% BLOCK jsinclude %]
109     [% INCLUDE 'datatables.inc' %]
110     [% INCLUDE 'columns_settings.inc' %]
111     <script>
112     $(document).ready(function() {
113         columns_settings = [% ColumnsSettings.GetColumns( 'opac', 'biblio-detail', 'course-items-table', 'json' ) | $raw %];
114         KohaTable("#course-items-table", {
115             "dom": '<"top"flp>rt<"clear">',
116             "sorting": [[ 1, "asc" ]],
117             "autoWidth": false,
118             "asColumnDefs": [
119                 { "type": "anti-the", "targets" : [ "anti-the" ] },
120                 { "type": "title-string", "targets" : [ "title-string" ] },
121             ]
122         }, columns_settings );
123     });
124     </script>
125 [% END %]