Sith/accounting/templates/accounting/refound_account.jinja

16 lines
411 B
Plaintext
Raw Normal View History

2016-11-30 01:41:25 +00:00
{% extends "core/base.jinja" %}
{% block title %}
{% trans %}Refound account{% endtrans %}
{% endblock %}
{% block content %}
2017-10-09 11:58:18 +00:00
<div id="accounting">
<h3>{% trans %}Refound account{% endtrans %}</h3>
<form action="" method="post">
{% csrf_token %}
{{ form.as_p() }}
<p><input type="submit" value="{% trans %}Refound{% endtrans %}" /></p>
</form>
</div>
2016-11-30 01:41:25 +00:00
{% endblock %}