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

1234567891011
  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. </div>
  11. {% endfor %} {% endblock %}