15 lines
397 B
HTML
15 lines
397 B
HTML
{% extends "base.html" %}
|
|
|
|
{% load crispy_forms_filters i18n %}
|
|
|
|
{% block content %}
|
|
<form method="post" action="{% url "participation:update_phase" pk=object.pk %}">
|
|
<div id="form-content">
|
|
{% csrf_token %}
|
|
{{ form|crispy }}
|
|
</div>
|
|
<button class="btn btn-primary" type="submit">{% trans "Update" %}</button>
|
|
</form>
|
|
{% endblock content %}
|
|
|