mirror of
https://github.com/mediacms-io/mediacms.git
synced 2024-11-22 08:13:33 +01:00
18 lines
501 B
HTML
18 lines
501 B
HTML
|
{% extends "base.html" %}
|
||
|
{% load crispy_forms_tags %}
|
||
|
|
||
|
{% block headtitle %}Add subtitle - {{PORTAL_NAME}}{% endblock headtitle %}
|
||
|
|
||
|
{% block innercontent %}
|
||
|
<div class="user-action-form-wrap">
|
||
|
<div class="user-action-form-inner">
|
||
|
<h1>Add subtitle</h1>
|
||
|
<form enctype="multipart/form-data" action="" method="post" class="post-form">
|
||
|
{% csrf_token %}
|
||
|
{{ form|crispy }}
|
||
|
<button class="primaryAction" type="submit">Add</button>
|
||
|
</form>
|
||
|
</div>
|
||
|
</div>
|
||
|
{% endblock innercontent %}
|