removed members hashtag list; changed upload folder path nginx

This commit is contained in:
root (fetsite6)
2020-10-23 20:50:42 +02:00
parent 0b7b99e41d
commit cb23846a09
4 changed files with 35 additions and 34 deletions

View File

@@ -34,35 +34,11 @@
</div>
<div class="grid-container">
<div class="grid-x">
<h1>{{ post.title|tags_to_url }}</h1>
<strong>{{ post.subtitle|default_if_none:"&nbsp;"|tags_to_url }}</strong>
<br>
<div class="grid-x grid-padding-x">
<div class="cell medium-8">
<h1>{{ post.title|tags_to_url }}</h1>
<strong>{{ post.subtitle|default_if_none:"&nbsp;"|tags_to_url }}</strong>
<span class="nav fa fa-chevron-right fa-3x"></span>
<br>
<a href="{% url 'posts.show' next %}">Nächster Artikel</a><br>
<div class="cell medium-4">
{% include 'posts/partials/_date_box.html' %}
</div>
Start: {{ post.event_start }}<br>
Ende: {{ post.event_end }}<br>
{% if request.user.is_authenticated %}
{% if post.has_agenda %}
<a href="{{ ep_agenda_link }}">Agenda</a><br>
{% endif %}
{% if post.has_protocol %}
<a href="{{ ep_protocol_link }}">Protokoll</a>
{% endif %}
<br>------<br>
<a href="{% url "admin:posts_news_change" post.id %}">Bearbeiten</a>
{% endif %}
<hr>
{% for tag in post.get_tagnames %}
{{ tag|tags_to_url }}
@@ -77,6 +53,25 @@
{{ post.body|safe|add_internal_links|tags_to_url }}
<hr>
</div>
<div class="cell medium-4">
{% if request.user.is_authenticated %}
{% if post.has_agenda %}
<a href="{{ ep_agenda_link }}">Agenda</a><br>
{% endif %}
{% if post.has_protocol %}
<a href="{{ ep_protocol_link }}">Protokoll</a>
{% endif %}
{% endif %}
Start: {{ post.event_start }}<br>
Ende: {{ post.event_end }}<br>
<a href="{% url 'posts.show' next %}">Nächster Artikel </a><span class="nav fa fa-chevron-right fa-1x"></span><br>
{% include 'posts/partials/_date_box.html' %}
</div>
</div>
<div class="grid-x grid-margin-x">
@@ -87,4 +82,4 @@
{% endfor %}
</div>
</div>
{% endblock %}
{% endblock %}