1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-07-24 21:50:36 +02:00

Add update note menu

This commit is contained in:
Yohann D'ANELLO
2021-01-14 18:21:22 +01:00
parent be8904079d
commit ef785a5eb8
8 changed files with 69 additions and 8 deletions

View File

@ -0,0 +1,13 @@
{% extends "base.html" %}
{% load crispy_forms_filters i18n %}
{% block content %}
<form method="post">
<div id="form-content">
{% csrf_token %}
{{ form|crispy }}
</div>
<button class="btn btn-primary" type="submit">{% trans "Update" %}</button>
</form>
{% endblock content %}