1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-02-25 03:46:29 +00:00

18 lines
531 B
HTML
Raw Normal View History

{% extends request.content_only|yesno:"empty.html,base.html" %}
2020-12-31 12:13:42 +01:00
{% load crispy_forms_filters i18n %}
{% block content %}
<form method="post">
<div id="form-content">
{% csrf_token %}
{{ form|crispy }}
</div>
2021-01-01 12:11:09 +01:00
{% if object.pk %}
<button class="btn btn-primary" type="submit">{% trans "Update" %}</button>
{% else %}
<button class="btn btn-success" type="submit">{% trans "Create" %}</button>
{% endif %}
2020-12-31 12:13:42 +01:00
</form>
{% endblock content %}