16 lines
355 B
HTML
16 lines
355 B
HTML
{% extends 'application.html' %}
|
|
|
|
{% block content %}
|
|
|
|
<section class="period panel">
|
|
<h1>Generate Period</h1>
|
|
<form method="post" action="">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
|
|
<input type="submit" value="Save changes" /> or
|
|
<a href="{% url 'attendance-overview' %}">Cancel</a>
|
|
</form>
|
|
</section>
|
|
{% endblock %}
|