add period templates, add period, edit period, delete period

This commit is contained in:
2022-11-17 11:34:41 -05:00
parent 3082ab7307
commit ce1e8ed68c
5 changed files with 118 additions and 1 deletions

20
templates/newPeriod.html Normal file
View File

@@ -0,0 +1,20 @@
{% extends 'base.html' %}
{% block content %}
<span><h1>{% block title %} New Period {% endblock %}</h1></span>
<form method="post">
{{ form.csrf_token }}
<p>
{{ form.periodTime.label }}
{{ form.periodTime }}
</p>
<p>
{{ form.weekendSchedule.label }}
{{ form.weekendSchedule }}
</p>
<p>
<button class="btn btn-primary" type="submit">Submit</button>
</p>
</form>
{% endblock %}