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.

post_list.html 696B

123456789101112131415161718192021222324252627282930
  1. {% extends 'base.html' %} {% block content %} {% for post in posts %} {% load taggit_templatetags2_tags %}
  2. <div class="post">
  3. <div class="date">
  4. {{ post.published_date }}
  5. </div>
  6. <h1>
  7. <a href="{% url 'post_detail' pk=post.pk %}">{{ post.title }}</a>
  8. </h1>
  9. <p>{{ post.text|linebreaks }}</p>
  10. <p>
  11. {% for tag in post.tags.all %}
  12. <a href="">{{ tag.name }}, </a>
  13. {% endfor %}
  14. </p>
  15. <p>
  16. {{ post.author }}
  17. </p>
  18. </div>
  19. {% endfor %}
  20. {% get_tagcloud as tags for 'application' %}
  21. <div id="tag-cloud">
  22. <ul>
  23. {% for tag in tags %}
  24. <li>{{tag}} ({{tag.num_times}})</li>
  25. {% endfor %}
  26. </ul>
  27. </div>
  28. </div>
  29. {% endblock %}