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_draft_list.html 366B

1234567891011
  1. {% extends 'base.html' %}
  2. {% block content %}
  3. {% for post in posts %}
  4. <div class="post">
  5. <p class="date">created: {{ post.created_date|date:'d-m-Y' }}</p>
  6. <h1><a href="{% url 'post_detail' pk=post.pk %}">{{ post.title }}</a></h1>
  7. <p>{{ post.text|truncatechars:200 }}</p>
  8. </div>
  9. {% endfor %}
  10. {% endblock %}