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

1234567891011121314151617181920212223242526272829303132
  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. <div id="tag-cloud">
  15. </div>
  16. <form type="get" action="." style="margin: 0">
  17. <input id="search_box" type="text" name="search_box" placeholder="Search..." >
  18. <button id="search_submit" type="submit" >Submit</button>
  19. </form>
  20. <div>
  21. <ul>
  22. {% for tag in tags %}
  23. <li>
  24. {{tag}}
  25. </li>
  26. {% endfor %}
  27. </ul>
  28. </div>
  29. {% endblock %}