Private
Public Access
1
0
Files
rowsandall/rowers/templates/transactions.html
Sander Roosendaal 196548fdcc staticfiles to static
2021-04-14 10:00:14 +02:00

25 lines
411 B
HTML

{% extends "newbase.html" %}
{% load static %}
{% load rowerfilters %}
{% block main %}
<h1>Download Transactions</h1>
<form actions="" method="post">
<table>
{{ dateform.as_table }}
</table>
{% csrf_token %}
<input type="submit" value="Submit">
</form>
{% endblock %}
{% block sideheader %}
<h1>Profile</h1>
{% endblock %}
{% block sidebar %}
{% include 'menu_payments.html' %}
{% endblock %}