lglog/lglog/templates/lg/new_payer.html

12 lines
237 B
HTML

{% extends "base.html" %}
{% load crispy_forms_filters %}
{% block content %}
<form method="post">
{% csrf_token %}
{{ form|crispy }}
<input class="btn btn-success" type="submit">
</form>
{% endblock %}