{% extends 'base.html' %} {% block title %} Tagged | BrandX {% endblock title %} {% block content %}

{% if model_type %}{{model_type.name}}{% endif %} tagged {{tag_slug}}

{% if not user.is_authenticated %}

Login to see saved objects you've tagged.

{% endif %}
{% for obj in user_tagged_objs %} {% if forloop.first %}
Object bookmarked
Type of Object
{% endif %}
{{obj.content_object}} {% if user.is_authenticated %} {{obj.content_object.modal}} {% endif %}
{{obj.content_type.name}}
{% endfor %}
{% endblock content %}