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

1234567891011121314151617181920
  1. {% extends 'base.html' %} {% block content %} {% for post in posts %}
  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 %} {% endblock %}