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

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