Files
fet2020/fet2020/templates/intern/docu.html
2022-03-17 08:39:39 +00:00

91 lines
3.1 KiB
HTML

{% extends "layout.html" %}
{% block content %}
<div class="grid-container">
<div class="grid-x grid-padding-x">
<div class="cell padding-top-1">
<h3>
<a href="{% url 'intern' %}#{{ active_topic.topic_group.slug }}">{{ active_topic.topic_group.title }}</a>
/ <a href="{% url 'topic' active_topic.slug %}">{{ active_topic.title }}</a>
/ {{ active_docu.title }}
</h3>
</div>
</div>
<div class="intern-hero">
{% if active_docu.description %}
<div class="padding-top-1 padding-left-1 padding-right-1">
<a href="{% url 'admin:intern_topic_change' active_topic.id %}">Beschreibung bearbeiten</a>
<hr>
{{ active_docu.description|safe }}
<hr>
</div>
{% endif %}
<form action="" method="post">
{% csrf_token %}
<div class="grid-x grid-padding-x padding-top-1">
{{ formset.management_form }}
{% for form in formset %}
<div class="cell medium-3 large-2 small-10">
{{ form }}
</div>
{% endfor %}
{{ formset.non_field_errors }}
<div class="cell medium-3 large-2 small-10 align-self-bottom">
<input type="submit" class="button" name="btn_input" value="Hinzufügen">
</div>
</div>
</form>
{% for message in messages %}
<p id="messages" style="background-color: red">{{message}}</p>
{% endfor %}
<hr>
<div class="grid-x grid-padding-x">
<div class="cell">
{% if documents %}
Etherpad Dokumente:
{% for document in documents %}
<a href="{{ document.etherpad_key }}">
<div class="news-hero-compact">
<div class="news-hero-compact-text">
<p style="margin-bottom: 0rem;">{{ document.title }}</p>
</div>
<div class="news-hero-compact-right">
<p style="margin-bottom: 0rem;">{{ document.date }}</p>
</div>
</div>
</a>
{% endfor %}
{% endif %}
{% if files %}
Dokumente:
{% for file in files %}
<a href="{{ file.file_field.url }}" target="_blank">
<div class="news-hero-compact">
<div class="news-hero-compact-text">
<p style="margin-bottom: 0rem;"><i class="far fa-file"></i> {{ file.title }}</p>
</div>
<div class="news-hero-compact-right">
<p style="margin-bottom: 0rem;">{{ file.date }}</p>
</div>
</div>
</a>
{% endfor %}
{% endif %}
</div>
</div>
</div>
</div>
{% endblock %}