22 lines
583 B
HTML
22 lines
583 B
HTML
|
|
{{ form.csrf_token }}
|
|
<div class="title">
|
|
{% include 'edit-tools/_form-base.html' %}
|
|
{{ form.title(col=5,value=bloc.title,
|
|
class="form-control form-control-lg text-center") }}
|
|
</div>
|
|
|
|
<div class="content">
|
|
<form method='POST' action='/edit/{{ bloc.name }}' >
|
|
|
|
<div class="row">
|
|
<div class="col-lg-8 mx-auto text-center">
|
|
{% include 'edit-tools/_editor-wysiwyg.html' %}
|
|
</div>
|
|
</div>
|
|
{% include 'edit-tools/_btn-save-cancel.html' %}
|
|
</form>
|
|
</div>
|
|
|
|
{% include 'edit-tools/_disable-modify-button.html' %}
|