2019-08-11 23:25:27 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% load static %}
|
2020-03-11 12:05:29 +01:00
|
|
|
{% load i18n %}
|
2019-08-11 23:25:27 +02:00
|
|
|
{% load crispy_forms_tags %}
|
|
|
|
{% block content %}
|
2020-03-11 12:05:29 +01:00
|
|
|
<p><a class="btn btn-default" href="{% url 'note:template_list' %}">{% trans "Clubs list" %}</a></p>
|
2019-08-11 23:25:27 +02:00
|
|
|
<form method="post">
|
|
|
|
{% csrf_token %}
|
|
|
|
{{form|crispy}}
|
2020-03-11 12:05:29 +01:00
|
|
|
<button class="btn btn-primary" type="submit">{% trans "Submit" %}</button>
|
2019-08-11 23:25:27 +02:00
|
|
|
</form>
|
|
|
|
{% endblock %}
|