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.

taglist_include.html 203B

12345678910111213
  1. {% load taggit_templatetags2_tags %}
  2. {% if forvar %}
  3. {% get_taglist as tags for forvar %}
  4. {% else %}
  5. {% get_taglist as tags %}
  6. {% endif %}
  7. <ul>
  8. {% for tag in tags %}
  9. <li>{{tag}}</li>
  10. {% endfor %}
  11. </ul>