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_list.html 474B

123456789101112131415161718192021222324
  1. {% extends "base.html" %} {% block content %} {% load taggit_templatetags2_tags %}
  2. <div id="">
  3. Your tags:
  4. <ul>
  5. {% for tag in tags %}
  6. <li>
  7. <a href="{% url 'post_list_by_tag' tag.slug %}">{{ tag }}</a>
  8. </li>
  9. {% endfor %}
  10. </ul>
  11. </div>
  12. <div>
  13. {{ tags }} {{ u }}
  14. </div>
  15. <div>
  16. from List: {% for tag in tags %}
  17. {% for tag in posts %}
  18. <p>{{ tag.name }} </p>{% endfor %}{% endfor %}
  19. </div>
  20. {% endblock %}