This patch updates the OPAC and staff interface to use Bootstrap 5. Bootstrap CSS assets are now pulled from node_modules and compiled into staff-global.css and opac.css at build time. This update lays the foundations of some other chnages, especially the addition of a dark mode in the future. Hundreds of templates have been updated, mostly with updates to the grid markup. Most of the responsive behavior is still the same with the exception of improved flexibility of headers and footers in both the OPAC and staff interface. The other most common change is to add a new "namespace" to data attributes used by Bootstrap, e.g. "data-bs-target" or "data-bs-toggle". Modal markup has also been updated everywhere. Other common changes: dropdown button markup, alert markup (we now use Bootstrap's "alert alert-warning" and "alert alert-info" instead of our old "dialog alert" and "dialog info"). Bootstrap 5 now uses CSS variables which we can override in our own '_variables.scss' (in both the OPAC and staff) to accomplish a lot of the style overrides which we previously put in staff-global.scss. Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
44 lines
1.9 KiB
Text
44 lines
1.9 KiB
Text
[% USE raw %]
|
|
[% PROCESS 'i18n.inc' %]
|
|
[% INCLUDE "doc-head-open.inc" %]
|
|
<title>[% FILTER collapse %]
|
|
[% t("Add order") | html %] ›
|
|
[% t("Acquisition") | html %] ›
|
|
[% t("Koha") | html %]
|
|
[% END %]</title>
|
|
[% INCLUDE "doc-head-close.inc" %]
|
|
</head>
|
|
|
|
<body id="acq_addorder" class="acq">
|
|
[% INCLUDE "header.inc" %]
|
|
|
|
<div class="container-fluid">
|
|
[% IF (not_enough_budget) %]
|
|
<form action="/cgi-bin/koha/acqui/addorder.pl" method="post">
|
|
<input type="hidden" name="op" value="cud-order"/>
|
|
[% INCLUDE 'csrf-token.inc' %]
|
|
[% FOREACH var IN vars_loop %]
|
|
[% FOREACH val IN var.values %]
|
|
<input type="hidden" name="[% var.name | html %]" value="[% val | html %]" />
|
|
[% END %]
|
|
[% END %]
|
|
<input type="hidden" name="op" value="cud-addorder">
|
|
<input type="hidden" name="confirm_budget_exceeding" value="1" />
|
|
<div class="alert alert-warning">
|
|
[% IF (budget_exceeded) %]
|
|
<p>Warning! Order total amount exceeds allowed budget.</p>
|
|
[% END %]
|
|
[% IF (encumbrance_exceeded) %]
|
|
<p>Warning! You will exceed [% encumbrance | html %]% of your fund.</p>
|
|
[% END %]
|
|
[% IF (expenditure_exceeded) %]
|
|
<p>Warning! You will exceed maximum limit ([% expenditure | html %][% IF (currency) %] [% currency | html %][% END %]) for your fund.</p>
|
|
[% END %]
|
|
<p>Do you want to confirm this order?</p>
|
|
<button type="submit" class="btn btn-default approve"><i class="fa fa-fw fa-check"></i> Yes, I confirm</button>
|
|
<button type="button" class="btn btn-default deny" onclick="window.location.href = '[% referer | html %]'"><i class="fa fa-fw fa-times"></i> No, I don't confirm</button>
|
|
</div>
|
|
</form>
|
|
[% END %]
|
|
|
|
[% INCLUDE "intranet-bottom.inc" %]
|