{% extends "base_user.html" %} {% load core_tags %} {% block title %}Your bookmarks{% endblock %} {% block content_header %}Your bookmarks{% endblock %} {% block content %} {% if object_list %}

{% if has_previous %}Previous {{ results_per_page }}{% endif %}  {% if has_next %}Next {{ results_per_page }} >{% endif %} {% else %}

You haven't bookmarked any snippets yet.

{% endif %} {% endblock %} {% block sidebar %}

To bookmark a snippet, just click the "add this snippet to your bookmarks" link on its page.

The snippets other users have bookmarked most often are:

    {% for snippet in "cab.snippet"|call_manager:"most_bookmarked"|slice:":5" %}
  1. {{ snippet.title }}
  2. {% endfor %}
{% endblock %}