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

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

{% if user.is_authenticated %}

You're logged in as {{user}}

{% else %} {% load account %}

Login to view / add tags.

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