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

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