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

Your bookmarks

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

Log in to see saved objects you've tagged.

{% endif %}
{% for obj in bookmarked_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 %}