|
Lines 13-18
Link Here
|
| 13 |
<div class="main"> |
13 |
<div class="main"> |
| 14 |
<ul class="breadcrumb"> |
14 |
<ul class="breadcrumb"> |
| 15 |
<li><a href="/cgi-bin/koha/opac-main.pl">Home</a> <span class="divider">›</span></li> |
15 |
<li><a href="/cgi-bin/koha/opac-main.pl">Home</a> <span class="divider">›</span></li> |
|
|
16 |
<li><a href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% biblio.biblionumber | uri %]">Details for: [% biblio.title | html %]</a> <span class="divider">›</span></li> |
| 16 |
<li><a href="#">Request article</a></li> |
17 |
<li><a href="#">Request article</a></li> |
| 17 |
</ul> |
18 |
</ul> |
| 18 |
|
19 |
|
|
Lines 177-182
Link Here
|
| 177 |
<input type="submit" class="btn" value="Place request" /> |
178 |
<input type="submit" class="btn" value="Place request" /> |
| 178 |
</form> |
179 |
</form> |
| 179 |
[% ELSE %] |
180 |
[% ELSE %] |
|
|
181 |
<h1 class="title">[% biblio.title | html %]</h1> |
| 180 |
<div class="alert alert-info"> |
182 |
<div class="alert alert-info"> |
| 181 |
No article requests can be made for this record. |
183 |
No article requests can be made for this record. |
| 182 |
</div> |
184 |
</div> |
|
Lines 189-195
Link Here
|
| 189 |
|
191 |
|
| 190 |
[% BLOCK jsinclude %] |
192 |
[% BLOCK jsinclude %] |
| 191 |
<script> |
193 |
<script> |
| 192 |
// <![CDATA[ |
|
|
| 193 |
allow_submit = false; |
194 |
allow_submit = false; |
| 194 |
$('#place-article-request').on('submit', function( event ){ |
195 |
$('#place-article-request').on('submit', function( event ){ |
| 195 |
if ( ! allow_submit ) { |
196 |
if ( ! allow_submit ) { |
|
Lines 222-227
Link Here
|
| 222 |
$('#place-article-request').submit(); |
223 |
$('#place-article-request').submit(); |
| 223 |
} |
224 |
} |
| 224 |
}); |
225 |
}); |
| 225 |
// ]]> |
|
|
| 226 |
</script> |
226 |
</script> |
| 227 |
[% END %] |
227 |
[% END %] |
| 228 |
- |
|
|