Lines 31-65
$(document).ready(function() {
Link Here
|
31 |
<div class="yui-b"> |
31 |
<div class="yui-b"> |
32 |
<div class="yui-g"> |
32 |
<div class="yui-g"> |
33 |
|
33 |
|
34 |
<div id="toolbar"> |
34 |
<div id="toolbar" class="btn-toolbar"> |
35 |
<ul class="toolbar"> |
35 |
[% IF ( CAN_user_coursereserves_manage_courses ) %] |
36 |
[% IF ( CAN_user_coursereserves_manage_courses ) %] |
36 |
<a class="btn btn-small" id="new_course" href="/cgi-bin/koha/course_reserves/course.pl"><i class="icon-plus"></i> New course</a> |
37 |
<li><a class="btn" id="new_course" href="/cgi-bin/koha/course_reserves/course.pl">New course</a></li> |
37 |
[% END %] |
38 |
[% END %] |
|
|
39 |
</ul> |
40 |
</div><!-- /toolbar --> |
38 |
</div><!-- /toolbar --> |
41 |
|
39 |
|
42 |
<!-- |
|
|
43 |
<div id="search-toolbar"> |
44 |
<script type="text/javascript"> |
45 |
//<![CDATA[ |
46 |
function submitSearchForm(p_oEvent){ |
47 |
$('#search_courses_form').submit(); |
48 |
} |
49 |
|
50 |
$(document).ready(function(){ |
51 |
newCourseButton = new YAHOO.widget.Button("search_courses"); |
52 |
newCourseButton.on("click", submitSearchForm ); |
53 |
}); |
54 |
//]]> |
55 |
</script> |
56 |
<ul class="toolbar"> |
57 |
<li><form id="search_courses_form"><input type="text" name="search_on" id="search_on"></form></li> |
58 |
<li><a id="search_courses">Search courses</a></li> |
59 |
</ul> |
60 |
</div> |
61 |
--> |
62 |
|
63 |
<h1>Courses</h1> |
40 |
<h1>Courses</h1> |
64 |
<table id="course_reserves_table"> |
41 |
<table id="course_reserves_table"> |
65 |
<thead> |
42 |
<thead> |
Lines 72-78
$(document).ready(function() {
Link Here
|
72 |
<th>Instructors</th> |
49 |
<th>Instructors</th> |
73 |
<th>Staff note</th> |
50 |
<th>Staff note</th> |
74 |
<th>Public note</th> |
51 |
<th>Public note</th> |
75 |
<th># of Students</th> |
52 |
<th># of students</th> |
76 |
<th>Enabled</th> |
53 |
<th>Enabled</th> |
77 |
</tr> |
54 |
</tr> |
78 |
</thead> |
55 |
</thead> |
Lines 107-113
$(document).ready(function() {
Link Here
|
107 |
</div> |
84 |
</div> |
108 |
</div> |
85 |
</div> |
109 |
</div> |
86 |
</div> |
110 |
</div> |
|
|
111 |
|
112 |
|
87 |
|
113 |
[% INCLUDE 'intranet-bottom.inc' %] |
88 |
[% INCLUDE 'intranet-bottom.inc' %] |
114 |
- |
|
|