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

Your Bookmarks

{% if not user.is_authenticated %}

Login to see saved objects you've tagged.

{% endif %}
{% for obj in bookmarked_objs %}
{% include '../commons/_panel.html' %}
{% endfor %}
{% endblock content %}