nk20/templates/member/add_members.html

22 lines
456 B
HTML
Raw Normal View History

2020-03-25 16:42:54 +00:00
{% extends "member/noteowner_detail.html" %}
{% load crispy_forms_tags %}
{% load static %}
2020-03-31 21:54:14 +00:00
{% load i18n %}
2020-03-25 16:42:54 +00:00
{% block profile_info %}
{% include "member/club_info.html" %}
{% endblock %}
2020-03-31 21:54:14 +00:00
{% block profile_content %}
<form method="post" action="">
{% csrf_token %}
2020-03-31 21:54:14 +00:00
{{ form|crispy }}
<button class="btn btn-primary" type="submit">{% trans "Submit" %}</button>
</form>
2020-03-25 16:42:54 +00:00
{% endblock %}
2020-03-25 16:42:54 +00:00
{% block extrajavascript %}
<script>
</script>
{% endblock %}