{% extends "aristotle_mdr/user/userHome.html" %} {% load static %} {% load render_bundle from webpack_loader %} {% block title %}All Tags{% endblock %} {% block sidebar %} {% include "aristotle_mdr/user/userSideBar.html" with activeTab='favourites' %} {% endblock %} {% block webpack_css_bundle %} {% render_bundle 'allTags' 'css' %} {% endblock %} {% block webpack_bundle %} {% render_bundle 'allTags' 'js' %} {% endblock %} {% block page %}

All Tags

{% if page_obj %} {% for item in page_obj %} {% endfor %}
Tag Description Items Delete
{{ item.name }} {{ item.description }} {{ item.num_items }}
{% endif %}
{% include "aristotle_mdr/helpers/paginator.html" with page=page %}
{% endblock %}