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.

blog_search_list_view.html 504B

1234567891011121314151617
  1. {% extends "base.html" %} {% block content %}
  2. {% load taggit_templatetags2_tags %}
  3. {% get_taglist as tags for 'application.post' %}
  4. <div id="">
  5. <ul>
  6. {% for tag in tags %}
  7. <li>{{tag}} ({{tag.num_times}})
  8. </li>
  9. {{ result }}
  10. {% endfor %}
  11. </ul>
  12. </div>
  13. {% include "taggit_templatetags2/tagcanvas_include_js_static.html" %}
  14. {% include_tagcanvas 'tag-cloud' '200 px' '200 px' 'taggit_templatetags2' 'application.Post' %}
  15. <div id="tag-cloud">
  16. </div>
  17. {% endblock %}