bornhack-website/src/backoffice/templates/autoschedule_apply.html

24 lines
820 B
HTML

{% extends 'base.html' %}
{% load bootstrap3 %}
{% block content %}
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Really Apply AutoSchedule?</h3>
</div>
<div class="panel-body">
<p>Applying the AutoSchedule will schedule Events in EventSlots to match the result of the AutoScheduler calculation. Any existing autoscheduled Events will be unscheduled.</P>
<form method="POST">
{% csrf_token %}
{% bootstrap_form form %}
<button type="submit" class="btn btn-success">
<i class="fas fa-check"></i> Apply Schedule
</button>
<a href="{% url 'backoffice:autoschedule_manage' camp_slug=camp.slug %}" class="btn btn-default">
<i class="fas fa-undo"></i> Cancel
</a>
</form>
</div>
</div>
{% endblock content %}