Koha/koha-tmpl/intranet-tmpl/prog/en/modules/clubs/patron-clubs-tab.tt
Owen Leonard 5c68609110 Bug 27561: Remove type attribute from script tags: Various templates
This patch replaces remaining instances of <script type="javascript"> in
templates with "<script>."

To test, apply the patch and check the changes to the template. Verify
that the changes look correct.

Signed-off-by: Lucas Gass <lucas@bywatersolutions.com>

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
2021-02-01 16:36:38 +01:00

97 lines
2.9 KiB
Text

[% USE KohaDates %]
[% IF enrollments %]
<h4>Clubs currently enrolled in</h4>
<table>
<thead>
<tr>
<th>Name</th>
<th>Description</th>
<th>Date enrolled</th>
[% IF CAN_user_clubs_enroll %]<th>&nbsp;</th>[% END %]
</tr>
</thead>
<tbody>
[% FOREACH e IN enrollments %]
<tr>
<td>[% e.club.name | html %]</td>
<td>[% e.club.description | html %]</td>
<td>[% e.date_enrolled | $KohaDates %]</td>
[% IF CAN_user_clubs_enroll %]
<td>
<button class="btn btn-xs btn-default" onclick="cancelEnrollment( [% e.id | html %] )">
<i class="fa fa-remove"></i> Cancel enrollment
</button>
</td>
[% END %]
</tr>
[% END %]
</tbody>
</table>
[% END %]
[% IF clubs %]
<h4>Clubs not enrolled in</h4>
<table>
<thead>
<tr>
<th>Name</th>
<th>Description</th>
[% IF CAN_user_clubs_enroll %]<th>&nbsp;</th>[% END %]
</tr>
</thead>
<tbody>
[% FOREACH c IN clubs %]
<tr>
<td>[% c.name | html %]</td>
<td>[% c.description | html %]</td>
[% IF CAN_user_clubs_enroll %]
<td class="action">
<button class="btn btn-xs btn-default" onclick="loadEnrollmentForm([% c.id | html %])">
<i class="fa fa-plus"></i> Enroll
</button>
</td>
[% END %]
</tr>
[% END %]
</tbody>
</table>
[% END %]
[% IF CAN_user_clubs_enroll %]
<script>
function loadEnrollmentForm( id ) {
$("body").css("cursor", "progress");
$('#clubs-tab').load('/cgi-bin/koha/clubs/patron-enroll.pl?borrowernumber=[% borrowernumber | html %]&id=' + id, function() {
$("body").css("cursor", "default");
});
return false;
}
function cancelEnrollment( id ) {
$("body").css("cursor", "progress");
$.ajax({
type: "POST",
url: '/cgi-bin/koha/svc/club/cancel_enrollment',
data: { id: id },
success: function( data ) {
if ( data.success ) {
$('#clubs-tab').load('/cgi-bin/koha/clubs/patron-clubs-tab.pl?borrowernumber=[% borrowernumber | html %]', function() {
$("body").css("cursor", "default");
});
} else {
alert(_("Unable to cancel enrollment!"));
}
},
dataType: 'json'
});
return false;
}
</script>
[% END %]