Added date selector to rolls

This commit is contained in:
John Mullins
2024-12-12 14:33:25 +11:00
parent 3392597696
commit 320303f95f
5 changed files with 60 additions and 16 deletions
@@ -0,0 +1,11 @@
{% extends "admin/base_site.html" %}
{% block content %}
<form action="" method="post">
{% csrf_token %}
{{ form }}
<input type="hidden" name="action" value="show_bus_roll_on_date">
<input type="date" name="date">
<input type="submit" name="generate" value="Generate">
</form>
{% endblock %}