mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2025-02-06 01:33:06 +00:00
6fa3a08a72
Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
16 lines
450 B
HTML
16 lines
450 B
HTML
{% extends request.content_only|yesno:"empty.html,base.html" %}
|
|
|
|
{% load crispy_forms_filters i18n %}
|
|
|
|
{% block content %}
|
|
<form method="post">
|
|
<div id="form-content">
|
|
<h4>{% trans "Notes of" %} {{ note.jury }}</h4>
|
|
<hr>
|
|
{% csrf_token %}
|
|
{{ form|crispy }}
|
|
</div>
|
|
<button class="btn btn-primary" type="submit">{% trans "Update" %}</button>
|
|
</form>
|
|
{% endblock content %}
|