Bug 10936: (prog theme) remove duplicate 'Standard number' option in Advanced search
[koha_fer] / koha-tmpl / opac-tmpl / prog / en / modules / opac-course-reserves.tt
1 [% USE Koha %]
2 [% USE AuthorisedValues %]
3
4 [% INCLUDE 'doc-head-open.inc' %]
5 [% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog › Courses
6 [% INCLUDE 'doc-head-close.inc' %]
7 </head>
8 <body id="opac-main">
9 [% IF ( OpacNav ) %]<div id="doc3" class="yui-t1">[% ELSE %]<div id="doc3" class="yui-t7">[% END %]
10    <div id="bd">
11 [% INCLUDE 'masthead.inc' %]
12
13
14 <div id="doc2" class="yui-t7">
15         <div id="yui-main">
16             <div class="yui-b">
17                 <div class="yui-g">
18
19                     <h1>Courses</h1>
20                     <div id="search-toolbar">
21                         <form action="/cgi-bin/koha/opac-course-reserves.pl" method="get" id="search_courses_form">
22                             <fieldset>
23                                 <label for="search_on">Search courses:</label> <input type="text" name="search_on" id="search_on" />
24                                 <input type="submit" value="Search" />
25                             </fieldset>
26                         </form>
27                     </div><!-- /search-toolbar -->
28
29                     <table id="course_reserves_table">
30                         <thead>
31                             <tr>
32                                 <th>Name</th>
33                                 <th>Dept.</th>
34                                 <th>Course #</th>
35                                 <th>Section</th>
36                                 <th>Term</th>
37                                 <th>Instructors</th>
38                                 <th>Notes</th>
39                             </tr>
40                         </thead>
41
42                         <tbody>
43                             [% FOREACH c IN courses %]
44                                 <tr>
45                                     <td><a href="opac-course-details.pl?course_id=[% c.course_id %]">[% c.course_name %]</a></td>
46                                     <td>[% AuthorisedValues.GetByCode( 'DEPARTMENT', c.department, 1 ) %]</td>
47                                     <td>[% c.course_number %]</td>
48                                     <td>[% c.section %]</td>
49                                     <td>[% AuthorisedValues.GetByCode( 'TERM' c.term ) %]</td>
50                                     <td>
51                                       [% FOREACH i IN c.instructors %]
52                                           <div class="instructor">[% i.firstname %] [% i.surname %]</div>
53                                       [% END %]
54                                     </td>
55                                     <td>[% c.public_note %]</td>
56                             [% END %]
57                         </tbody>
58                     </table>
59                 </div>
60             </div>
61         </div>
62 </div>
63 </div>
64
65 [% INCLUDE 'opac-bottom.inc' %]