mirror of https://gitlab.crans.org/bde/nk20
22 lines
456 B
HTML
22 lines
456 B
HTML
{% extends "member/noteowner_detail.html" %}
|
|
{% load crispy_forms_tags %}
|
|
{% load static %}
|
|
{% load i18n %}
|
|
|
|
{% block profile_info %}
|
|
{% include "member/club_info.html" %}
|
|
{% endblock %}
|
|
|
|
{% block profile_content %}
|
|
<form method="post" action="">
|
|
{% csrf_token %}
|
|
{{ form|crispy }}
|
|
<button class="btn btn-primary" type="submit">{% trans "Submit" %}</button>
|
|
</form>
|
|
{% endblock %}
|
|
|
|
{% block extrajavascript %}
|
|
<script>
|
|
</script>
|
|
{% endblock %}
|