18 lines
412 B
HTML
18 lines
412 B
HTML
{% extends "interface/project_base.html" %}
|
|
{% load crispy_forms_tags %}
|
|
|
|
{% block media %}
|
|
{{ form.media }}
|
|
{% endblock %}
|
|
|
|
{% block page %}
|
|
<h3 class="subtitle">{% firstof title view.title %}</h3>
|
|
<div class="columns is-centered">
|
|
<div class="column is-two-thirds">
|
|
{% if instructions %}
|
|
<p>{{ instructions }}</p>
|
|
{% endif %}
|
|
{% crispy form %}
|
|
</div>
|
|
</div>
|
|
{% endblock %} |