Lines 79-85
Link Here
|
79 |
display_string = link; |
79 |
display_string = link; |
80 |
} |
80 |
} |
81 |
return display_string; |
81 |
return display_string; |
82 |
} |
82 |
}, searchable: false |
83 |
|
83 |
|
84 |
}, |
84 |
}, |
85 |
{ |
85 |
{ |
Lines 89-95
Link Here
|
89 |
var link = '<a href="/cgi-bin/koha/tools/oai-pmh-harvester/record.pl?import_oai_id='+data+'">'+link_text+'</a>'; |
89 |
var link = '<a href="/cgi-bin/koha/tools/oai-pmh-harvester/record.pl?import_oai_id='+data+'">'+link_text+'</a>'; |
90 |
display_string = link; |
90 |
display_string = link; |
91 |
return display_string; |
91 |
return display_string; |
92 |
} |
92 |
}, searchable: false |
93 |
}, |
93 |
}, |
94 |
], |
94 |
], |
95 |
//In theory, it would be nice to sort in descending order, but |
95 |
//In theory, it would be nice to sort in descending order, but |
Lines 238-246
Link Here
|
238 |
[% IF ( result.send.defined ) %] |
238 |
[% IF ( result.send.defined ) %] |
239 |
<div class="alert"> |
239 |
<div class="alert"> |
240 |
[% IF ( result.send ) %] |
240 |
[% IF ( result.send ) %] |
241 |
<span>Send succeeded</span> |
241 |
<span>Submit succeeded</span> |
242 |
[% ELSE %] |
242 |
[% ELSE %] |
243 |
<span>Send failed</span> |
243 |
<span>Submit failed</span> |
244 |
[% END %] |
244 |
[% END %] |
245 |
</div> |
245 |
</div> |
246 |
[% END %] |
246 |
[% END %] |
Lines 327-333
Link Here
|
327 |
<a href="[% request_page %]?op=new&id=[% saved_request.id %]"><i class="fa fa-copy"></i> Copy</a> |
327 |
<a href="[% request_page %]?op=new&id=[% saved_request.id %]"><i class="fa fa-copy"></i> Copy</a> |
328 |
</li> |
328 |
</li> |
329 |
<li> |
329 |
<li> |
330 |
<a href="[% dashboard_page %]?op=send&id=[% saved_request.id %]"><i class="fa fa-send"></i> Send</a> |
330 |
<a href="[% dashboard_page %]?op=send&id=[% saved_request.id %]"><i class="fa fa-send"></i> Submit</a> |
331 |
</li> |
331 |
</li> |
332 |
<li> |
332 |
<li> |
333 |
<a href="[% request_page %]?op=delete&id=[% saved_request.id %]"><i class="fa fa-trash"></i> Delete</a> |
333 |
<a href="[% request_page %]?op=delete&id=[% saved_request.id %]"><i class="fa fa-trash"></i> Delete</a> |
334 |
- |
|
|