11 lines
292 B
HTML
11 lines
292 B
HTML
{% extends "admin/base_site.html" %}
|
|
|
|
{% block content %}
|
|
<div id="content-main">
|
|
<h2>Generate Payment Codes</h2>
|
|
<form method="post">{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<input type="submit" name="apply" value="Generate" class="default">
|
|
</form>
|
|
</div>
|
|
{% endblock %} |