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 615B

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