nk20/templates/wei/weiregistration_form.html

17 lines
422 B
HTML
Raw Normal View History

2020-04-18 01:27:12 +00:00
{% extends "member/noteowner_detail.html" %}
2020-04-12 01:31:08 +00:00
{% load i18n %}
{% load crispy_forms_tags %}
2020-04-18 01:27:12 +00:00
{% block profile_info %}
{% include "wei/weiclub_info.html" %}
{% endblock %}
{% block profile_content %}
2020-04-20 23:06:54 +00:00
<form method="post">
{% csrf_token %}
{{ form|crispy }}
{{ membership_form|crispy }}
<button class="btn btn-primary" type="submit">{% trans "Submit" %}</button>
</form>
2020-04-12 01:31:08 +00:00
{% endblock %}