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

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