31 lines
836 B
HTML
31 lines
836 B
HTML
{% extends "users/base.html" %}
|
|
{% load crispy_forms_tags %}
|
|
{% load static %}
|
|
{% block content %}
|
|
{% if request.user.profile.agency.module_news %}
|
|
<div class="content-section col-6">
|
|
|
|
<h3>News anlegen</h3>
|
|
<hr>
|
|
<form method="POST">
|
|
{% csrf_token %}
|
|
{{normalForm.media}}
|
|
{{normalForm|crispy}}
|
|
<hr>
|
|
<button type="submit" class="btn btn-primary" href="{% url 'news-add' %} ">News anlegen</button>
|
|
<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
|
|
});
|
|
});
|
|
</script>
|
|
{% else %}
|
|
<h3>Das Modul News wurde in ihrer Agentur deaktiviert.</h3>
|
|
{% endif %}
|
|
{% endblock content %} |