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.

tagcanvas_list.html 360B

123456789101112131415
  1. {% extends "taggit_templatetags2/tagcanvas_base.html" %}
  2. {% block "tagcanvas_js" %}
  3. {% endblock %}
  4. {% block "tagcanvas_content" %}
  5. <div id="tagcanvas_list">
  6. {% for taggeditem in taggeditem_list %}
  7. <div class="item">
  8. {% include "taggit_templatetags2/tagcanvas_list_item.html" with item=taggeditem %}
  9. </div>
  10. {% endfor %}
  11. </div>
  12. {% endblock %}