mirror of
https://github.com/mediacms-io/mediacms.git
synced 2025-11-05 23:18:53 -05:00
remove ckeditor - not in use add more strict default password validators set Django admin as configurable URL add nginx HSTS and CSP headers enable moving from private to unlisted in the PORTAL_WORKFLOW private on default comments listing, show only comments for public media in case of a private media, dont expose any unneeded metadata
23 lines
604 B
HTML
23 lines
604 B
HTML
{% extends "base.html" %}
|
|
{% load crispy_forms_tags %}
|
|
{% load static %}
|
|
|
|
{% block headtitle %}Edit media - {{PORTAL_NAME}}{% endblock headtitle %}
|
|
|
|
{% block headermeta %}{% endblock headermeta %}
|
|
|
|
{% block innercontent %}
|
|
|
|
<div class="user-action-form-wrap">
|
|
<div class="user-action-form-inner">
|
|
<h1>Edit Media</h1>
|
|
<form enctype="multipart/form-data" action="" method="post" class="post-form">
|
|
{% csrf_token %}
|
|
{{ form|crispy }}
|
|
<button class="primaryAction" type="submit">Update Media</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock innercontent %}
|
|
|