1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-08-01 05:14:30 +02:00
Files
apps
locale
media
note_kfet
requirements
static
templates
cas_server
django_filters
member
note
conso_form.html
transaction_form.html
transactiontemplate_form.html
transactiontemplate_list.html
registration
treasury
base.html
.coveragerc
.env_example
.gitignore
.gitlab-ci.yml
.gitmodules
COPYING
Dockerfile
LICENSE
README.md
entrypoint.sh
manage.py
nginx_note.conf_example
tox.ini
uwsgi_note.ini
uwsgi_params
nk20/templates/note/transactiontemplate_form.html
2020-03-11 12:05:29 +01:00

13 lines
351 B
HTML

{% extends "base.html" %}
{% load static %}
{% load i18n %}
{% load crispy_forms_tags %}
{% block content %}
<p><a class="btn btn-default" href="{% url 'note:template_list' %}">{% trans "Buttons list" %}</a></p>
<form method="post">
{% csrf_token %}
{{form|crispy}}
<button class="btn btn-primary" type="submit">Submit</button>
</form>
{% endblock %}