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.

tag_remove.html 602B

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