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

12345678910111213
  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. {% endblock %}