Files
bus-manager/busManager/coord/templates/admin/rollover_form.html
T
John Mullins 0f3631f579 Rollover submit moved to POST
Changed archived lookup to active lookup
2024-01-24 10:05:44 +11:00

16 lines
703 B
HTML

{% extends "admin/base_site.html" %}
{% block content %}
<h1>Yearly rollover</h1>
<p>Initiating a rollover will perform the following actions.</p>
<ul>
<li>Set any active Year 12 traveller without an exit date to the selected exit date.</li>
<li>Set any active traveller with an exit date before today to inactive</li>
<li>Increase the year level of everyone except for <b>Adult Learners</b> and <b>Year 12</b></li>
</ul>
<form action="" method="post">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" style="padding: 15px 30px; font-size: 18px; background: var(--delete-button-bg);" value="Initiate!">
</form>
{% endblock %}