82 lines
3.1 KiB
HTML
Raw Normal View History

{% extends "base.html" %} {% block content %}
2018-08-19 22:55:06 +02:00
{% load taggit_templatetags2_tags %}
2018-11-18 18:39:08 +01:00
<div class="container">
<div class="row equal">
<div class="col-md-6" >
2018-11-17 19:57:10 +01:00
<h1> Alle Tags im Überblick<br>
</h1>
2018-11-18 18:39:08 +01:00
<div class="col-md-8" style="zoom: 1.6">
<div style="text-align:center;padding:5px;">
{% get_tagcloud as tags for 'application' %}
{% include_tagcloud 'application.Post' %}
</div>
</div>
<div style="padding-bottom:40px;">
</div>
2018-11-14 18:30:14 +01:00
Tag-Suche
<div id="custom-search-input">
<form type="get" action="." style="margin: 0" class="post-form">
<p>
<input id="search_box" type="text" name="search_box" placeholder="Search...">
</p>
<span>
<button id="search_submit" type="submit" class="save btn btn-outline-dark">Suchen</button>
</button>
</span>
2018-11-14 18:30:14 +01:00
</form>
2018-11-18 18:39:08 +01:00
<div class="pt-4">
2018-11-14 18:30:14 +01:00
{% for post in posts %}
<div class="post">
<div class="date">
{{ post.published_date }}
</div>
<h1>
<a href="{% url 'post_detail' pk=post.pk %}">{{ post.title }}</a>
</h1>
<p>{{ post.text|linebreaks }}</p>
{% for tag in post.tags.all %}
2018-11-14 18:30:14 +01:00
<a href="{% url 'post_list_by_tag' tag.slug %}">{{ tag.name }}</a>
{% if not forloop.last %}, {% endif %} {% endfor %} <p>
{{ post.author }}
</p>
</div>
{% endfor %}
</div>
</div>
2018-11-17 19:57:10 +01:00
2018-11-14 18:30:14 +01:00
</div>
2018-11-17 19:57:10 +01:00
<div class="col-md-6">
<h1> Bereits abonnierten Tags
</h1>
<div class="col-md-10">
2018-11-17 19:57:10 +01:00
{% if tags %}
2018-11-18 18:39:08 +01:00
<div style="text-align:center;padding-top:40px;">
{% for tag in tagsuser %}
2018-11-18 18:39:08 +01:00
<a class="text-white bg-dark p-3" href="{% url 'post_list_by_tag' tag.slug %}">{{ tag.name }}</a>
{% endfor %}
2018-11-17 19:57:10 +01:00
</div>
{% endif %}
</div>
2018-11-18 18:39:08 +01:00
<div style="padding-bottom:145px;">
2018-11-17 19:57:10 +01:00
</div>
2018-11-18 18:39:08 +01:00
<div class="mx-auto">
2018-11-17 19:57:10 +01:00
2018-11-18 18:39:08 +01:00
<div>
Abonniere deine Tags hier!
</div>
<form class="post-form" method="post">
{% csrf_token %} {{form.as_p}}
<button type="submit" class="save btn btn-outline-dark">Sichern</button>
</form>
{% if messages %}
{% for message in messages %}
<div {% if message.tags %} class="{{ message.tags }}" {% endif %}>{{ message }}</div>
{% endfor %}
{% endif %}
</div>
</div>
2018-11-14 18:30:14 +01:00
</div>
</div>
{% endblock %}