=cut
=head3 club_template
sub club_template {
my ($self) = @_;
return unless $self->club_template_id();
return Koha::Club::Templates->find( $self->club_template_id() );
}
=head3 club_fields
my $club = $club_id ? Koha::Clubs->find( $club_id ) : undef;
my @club_templates = Koha::Club::Templates->search();
my @clubs = Koha::Clubs->search();
my @clubs = Koha::Clubs->search({}, { prefetch => 'club_template' });
$template->param(
stored => $stored,
-