{% extends 'base.html' %} {% block title %} User tag list | BrandX {% endblock title %} {% block content %}

Your Tags

{% if not user.is_authenticated %} {% load account %}

Log in to see saved objects you've tagged.

{% endif %}
{% for tag in tags %} {{tag.name}} {% include './item.html' with count=tag.samplebook_count slug=tag.samplebook_slug idx=tag.samplebook_id %} {% include './item.html' with count=tag.samplequote_count slug=tag.samplequote_slug idx=tag.samplequote_id %} {% empty %} {% if user.is_authenticated %}

No tags supplied.

{% endif %} {% endfor %}
{% endblock content %}