Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tag_list.html 654B

12345678910111213141516171819202122232425
  1. {% extends "base.html" %} {% block content %}
  2. {% load taggit_templatetags2_tags %}
  3. <div>
  4. </div>
  5. <div>
  6. {% for post in posts %}
  7. <div class="post">
  8. <div class="date">
  9. {{ post.published_date }}
  10. </div>
  11. <h1>
  12. <a href="{% url 'post_detail' pk=post.pk %}">{{ post.title }}</a>
  13. </h1>
  14. <p>{{ post.text|linebreaks }}</p>
  15. Tags: {% for tag in post.tags.all %}
  16. <a href="{% url 'post_list_by_tag' tag.slug %}">{{ tag.name }}</a>
  17. {% if not forloop.last %}, {% endif %} {% endfor %} <p>
  18. {{ post.author }}
  19. </p>
  20. </div>
  21. {% endfor %}
  22. </div>
  23. {% endblock %}