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

1234567891011121314151617181920
  1. <!--
  2. external code
  3. import from https://tutorial.djangogirls.org/en/template_extending/
  4. -->
  5. {% extends 'base.html' %}
  6. {% block content %}
  7. <div class="row">
  8. <div class="col-md-8">
  9. <h1> Unveröffentliche Artikel<br>
  10. </h1>
  11. {% for post in posts %}
  12. <div class="post mt-5">
  13. <p class="date">created: {{ post.created_date|date:'d-m-Y' }}</p>
  14. <h1><a href="{% url 'post_detail' pk=post.pk %}">{{ post.title }}</a></h1>
  15. <p>{{ post.text|truncatechars:200 }}</p>
  16. </div>
  17. </div>
  18. </div>
  19. {% endfor %}
  20. {% endblock %}