digitaleagentur/news/templates/news/news_update.html

43 lines
1.3 KiB
HTML

{% extends "users/base.html" %}
{% load crispy_forms_tags %}
{% block content %}
{% if request.user.profile.agency.module_news %}
<div class="content-section col-6">
<h3>News bearbeiten</h3>
<hr>
<form method="POST" id="taskareaform">
{% csrf_token %}
{{normalForm.media}}
{{normalForm|crispy}}
<hr>
<button type="submit" class="btn btn-primary" href="{% url 'news-update' news_id %} ">News aktualisieren</button>&nbsp;
<a class="btn" href="{% url 'news-management' %} ">Abbrechen</a>
</form>
</div>
<script type="text/javascript">
$(document).ready(function() {
$('#id_content').summernote({
height: 400,
lang: "de-DE",
disableDragAndDrop: true,
toolbar: [
['style', ['style']],
['fontname', ['fontname']],
['style', ['bold', 'italic', 'underline', 'clear']],
['fontsize', ['fontsize']],
['color', ['color']],
['para', ['ul', 'ol', 'paragraph']],
['height', ['height']],
['table', ['table']],
['insert', ['link', 'picture', 'video']],
['hr', ['hr']],
['view', ['fullscreen', 'codeview', 'help']],
]
});
});
</script>
{% else %}
<h3>Das Modul News wurde in ihrer Agentur deaktiviert.</h3>
{% endif %}
{% endblock content %}