52b5a22edf
This removes the need to handle single and multiple cases separately, thus removing bunch if-else cases and simplifying our code. This coding style is also in line with our other .pl scripts. To test: 1) Make sure placing a hold still works from the following pages: /cgi-bin/koha/catalogue/detail.pl?biblionumber=XXX /cgi-bin/koha/catalogue/search.pl?q=a /cgi-bin/koha/virtualshelves/shelves.pl?op=view&shelfnumber=XXXX /cgi-bin/koha/clubs/clubs.pl (create a new club and add a patron there and through the clubs.pl create a hold to a bib) Signed-off-by: Hayley Pelham <hayleypelham@catalyst.net.nz> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com>
118 lines
5.2 KiB
HTML
118 lines
5.2 KiB
HTML
[% IF destination == 'holds' %]
|
|
<table id="clubs-table" class="selections-table">
|
|
[% ELSE %]
|
|
<table id="clubs-table">
|
|
[% END %]
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Template</th>
|
|
<th>Description</th>
|
|
[% UNLESS destination == 'holds' %]
|
|
<th>Public enrollment</th>
|
|
<th>Email required</th>
|
|
[% END %]
|
|
<th>Library</th>
|
|
<th>Start date</th>
|
|
<th>End date</th>
|
|
<th>Enrolled patrons</th>
|
|
[% UNLESS destination == 'holds' %]
|
|
<th> </th>
|
|
[% END %]
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
[% FOREACH c IN clubs %]
|
|
[% IF destination == 'holds' %]
|
|
[% SET data_url = "/cgi-bin/koha/reserve/request.pl?club=" _ c.id %]
|
|
[% FOREACH biblionumber IN biblionumbers %]
|
|
[% SET data_url = data_url _ "&biblionumber=" _ biblionumber %]
|
|
[% END %]
|
|
[% IF multi_hold %]
|
|
[% SET data_url = data_url _ "&multi_hold=1" %]
|
|
[% END %]
|
|
<tr class="clickable" data-url="[% data_url | html %]">
|
|
<td><a href="[% data_url | url %]">[% c.name | html %]</a></td>
|
|
[% ELSE %]
|
|
<tr>
|
|
<td>[% c.name | html %]</td>
|
|
[% END %]
|
|
<td>[% c.club_template.name | html %]</td>
|
|
<td>[% c.description | html %]</td>
|
|
[% UNLESS destination == 'holds' %]
|
|
<td>
|
|
[% IF c.club_template.is_enrollable_from_opac %]
|
|
Yes
|
|
[% ELSE %]
|
|
No
|
|
[% END %]
|
|
</td>
|
|
<td>
|
|
[% IF c.club_template.is_email_required %]
|
|
Yes
|
|
[% ELSE %]
|
|
No
|
|
[% END %]
|
|
</td>
|
|
[% END %]
|
|
<td>[% Branches.GetName( c.branchcode ) | html %]</td>
|
|
<td>
|
|
[% IF c.date_start %]
|
|
[% c.date_start | $KohaDates %]
|
|
[% END %]
|
|
</td>
|
|
<td>
|
|
[% IF c.date_end %]
|
|
[% c.date_end | $KohaDates %]
|
|
[% END %]
|
|
</td>
|
|
<td>
|
|
[% c.club_enrollments.count | html %]
|
|
</td>
|
|
[% UNLESS destination == 'holds' %]
|
|
<td class="actions">
|
|
<div class="btn-group dropup">
|
|
<a class="btn btn-default btn-xs dropdown-toggle" id="clubactions[% c.id | html %]" role="button" data-toggle="dropdown" href="#">
|
|
Actions <b class="caret"></b>
|
|
</a>
|
|
<ul class="dropdown-menu pull-right" role="menu" aria-labelledby="clubactions[% c.id | html %]">
|
|
[% IF ( c.club_enrollments.count ) %]
|
|
<li>
|
|
<a href="club-enrollments.pl?id=[% c.id | uri %]">
|
|
<i class="fa fa-list-ul"></i> Enrollments
|
|
</a>
|
|
</li>
|
|
[% ELSE %]
|
|
<li class="disabled">
|
|
<a href="#" data-toggle="tooltip" data-placement="left" title="There are no enrollments for this club yet">
|
|
<i class="fa fa-list-ul"></i> Enrollments
|
|
</a>
|
|
</li>
|
|
[% END %]
|
|
[% IF CAN_user_clubs_edit_clubs %]
|
|
<li>
|
|
<a href="clubs-add-modify.pl?id=[% c.id | uri %]">
|
|
<i class="fa fa-pencil"></i> Edit
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="#" class="delete_club" data-id="[% c.id | html %]" data-name="[% c.name | html %]">
|
|
<i class="fa fa-trash"></i> Delete
|
|
</a>
|
|
</li>
|
|
[% END %]
|
|
[% IF ( c.club_enrollments.count ) %]
|
|
<li>
|
|
<a href="#" class="club_hold_search" data-id="[% c.id | html %]">
|
|
<i class="fa fa-search"></i> Search to hold
|
|
</a>
|
|
</li>
|
|
[% END %]
|
|
</ul>
|
|
</div>
|
|
</td>
|
|
[% END %]
|
|
</tr>
|
|
[% END %]
|
|
</tbody>
|
|
</table> <!-- /.clubs-table -->
|