{% extends "base.html" %} {% load i18n mezzanine_tags keyword_tags %} {% block meta_title %}Bookmarks{% endblock %} {% block content-block %} {% regroup bookmarks.object_list by publish_date|date:"Y-m-d" as bookmarks_list %}

Bookmarks{% if tag %} tagged with '{{ tag }}'{% endif %}

{% for date_bookmarks in bookmarks_list %}

{{ date_bookmarks.grouper }}

{% endfor %}
{% pagination_for bookmarks %} {% endblock %}