Koha/koha-tmpl/intranet-tmpl/prog/en/modules/clubs/clubs-add-modify.tt
Jonathan Druart 48bf9b1d91
Bug 30718: Use flatpickr's altInput
The idea rely on the KohaDates TT plugin for the date formatting. We
should not have any output_pref calls in pl or pm (there are some
exceptions, for ILSDI for instance).

Also flatpickr will deal with the places where dates are inputed. We
will pass the raw SQL value (what we call 'iso' in Koha::DateUtils), and
the controller will receive the same value, no need to additional
conversion.
Note that DBIC has the capability to auto-deflate DateTime objects,
which makes things way easier. We can either pass the value we receive
from the controller, or pass a DT object to our methods.

Signed-off-by: Victor Grousset/tuxayo <victor@tuxayo.net>

Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2022-08-19 08:26:31 -03:00

151 lines
6.9 KiB
Text

[% USE KohaDates %]
[% USE Branches %]
[% USE AuthorisedValues %]
[% SET AuthorisedValuesCategories = AuthorisedValues.GetCategories %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>
[% IF club %]
Modify club [% club.name | html %]
[% ELSE %]
Create a new [% club_template.name | html %] club
[% END %] &rsaquo; Patron clubs &rsaquo; Tools &rsaquo; Koha
</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>
<body id="clubs_add_modify" class="clubs">
[% INCLUDE 'header.inc' %]
[% INCLUDE 'cat-search.inc' %]
<nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb">
<ol>
<li>
<a href="/cgi-bin/koha/mainpage.pl">Home</a>
</li>
<li>
<a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a>
</li>
<li>
<a href="clubs.pl">Patron clubs</a>
</li>
<li>
<a href="#" aria-current="page">
[% IF club %]
Modify club <em>[% club.name | html %]</em>
[% ELSE %]
Create a new <em>[% club_template.name | html %]</em> club
[% END %]
</a>
</li>
</ol>
</nav>
<div class="main container-fluid">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<form method="post" class="validated">
<input type="hidden" name="id" value="[% club.id | html %]" />
<input type="hidden" name="club_template_id" value="[% club_template.id | html %]" />
<fieldset class="rows">
<legend>
<h1>
[% IF club %]
Modify club <em>[% club.name | html %]</em>
[% ELSE %]
Create a new <em>[% club_template.name | html %]</em> club
[% END %]
</h1>
</legend>
<ol>
<li>
<label class="required" for="club-name">Name:</label>
<input id="club-name" name="name" type="text" value="[% club.name | html %]" required="required"/>
<span class="required">Required</span>
</li>
<li>
<label for="club-template-name">Description:</label>
<input id="club-template-name" name="description" type="text" value="[% club.description | html %]" size="40" />
</li>
<li>
<label for="from">Start date:</label>
<input name="date_start" id="from" size="10" class="flatpickr" data-date_to="to" value="[% club.date_start | html %]">
</li>
<li>
<label for="to">End date:</label>
<input name="date_end" id="to" size="10" class="flatpickr" value="[% club.date_end | html %]" >
</li>
<li>
<label for="club-template-branchcode">Library:</label>
<select name="branchcode" id="club-template-branchcode">
<option value=""></option>
[% PROCESS options_for_libraries libraries => Branches.all( selected => club.branch.branchcode ) %]
</select>
</li>
[% IF club %]
[% FOREACH f IN club.club_fields %]
<li>
<input type="hidden" name="club_template_field_id" value="[% f.club_template_field.id | html %]" />
<input type="hidden" name="club_field_id" value="[% f.id | html %]" />
<label for="club_field_[% f.club_template_field_id | html %]">[% f.club_template_field.name | html %]</label>
[% IF f.club_template_field.authorised_value_category %]
<select name="club_field" id="club_field_[% f.club_template_field_id | html %]">
[% FOREACH a IN AuthorisedValues.Get( f.club_template_field.authorised_value_category ) %]
[% IF a.authorised_value == f.value %]
<option value="[% a.authorised_value | html %]" selected="selected">[% a.lib | html %]</option>
[% ELSE %]
<option value="[% a.authorised_value | html %]">[% a.lib | html %]</option>
[% END %]
[% END %]
</select>
[% ELSE %]
<input type="text" name="club_field" id="club_field_[% f.club_template_field_id | html %]" value="[% f.value | html %]" size="40" />
[% END %]
</li>
[% END %]
[% ELSE %]
[% FOREACH f IN club_template.club_template_fields %]
<li>
<input type="hidden" name="club_template_field_id" value="[% f.id | html %]" />
<label for="club_template_field_[% f.id | html %]">[% f.name | html %]</label>
[% IF f.authorised_value_category %]
<select name="club_field" id="club_template_field_[% f.id | html %]">
[% FOREACH a IN AuthorisedValues.Get( f.authorised_value_category ) %]
<option value="[% a.authorised_value | html %]">[% a.lib | html %]</option>
[% END %]
</select>
[% ELSE %]
<input type="text" name="club_field" id="club_template_field_[% f.id | html %]" size="40" />
[% END %]
</li>
[% END %]
[% END %]
</ol>
</fieldset>
<fieldset class="action">
<input type="submit" value="Save" />
<a href="clubs.pl" class="cancel">Cancel</a>
</fieldset>
</form>
</div>
</div>
[% MACRO jsinclude BLOCK %]
[% INCLUDE 'calendar.inc' %]
[% END %]
[% INCLUDE 'intranet-bottom.inc' %]