{% extends "base.html" %} {% block content %} {% load taggit_templatetags2_tags %}

Alle Tags im Überblick

{% get_tagcloud as tags for 'application' %} {% include_tagcloud 'application.Post' %}
Tag-Suche

{% for post in posts %}
{{ post.published_date }}

{{ post.title }}

{{ post.text|linebreaks }}

{% for tag in post.tags.all %} {{ tag.name }} {% if not forloop.last %}, {% endif %} {% endfor %}

{{ post.author }}

{% endfor %}

Bereits abonnierten Tags

{% if tags %}
{% for tag in tagsuser %} {{ tag.name }} {% endfor %}
{% endif %}
Abonniere deine Tags hier!
{% csrf_token %} {{form.as_p}}
{% if messages %} {% for message in messages %}
{{ message }}
{% endfor %} {% endif %}
{% endblock %}