nk20/templates/wei/bus_form.html

16 lines
357 B
HTML
Raw Normal View History

2020-04-13 03:02:16 +00:00
{% extends "member/noteowner_detail.html" %}
{% load crispy_forms_tags %}
{% load i18n %}
{% block profile_info %}
2020-04-13 04:01:27 +00:00
{% include "wei/weiclub_info.html" %}
2020-04-13 03:02:16 +00:00
{% endblock %}
{% block profile_content %}
<form method="post">
{% csrf_token %}
{{ form|crispy }}
<button class="btn btn-primary" type="submit">{% trans "Submit" %}</button>
</form>
{% endblock %}