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

12345678910
  1. {% extends "base.html" %} {% block content %}
  2. <div id="tag-cloud">
  3. <ul>
  4. {% for tag in tags %}
  5. <li>{{tag}} ({{tag.num_times}})</li>
  6. {% endfor %}
  7. </ul>
  8. </div>
  9. {% endblock %}