{% extends "bookmarks/base.html" %} {% block title %}All Bookmarks{% endblock %} {% block content %}

All Bookmarks ({{ bookmarks_with_params|length }})

{% for item in bookmarks_with_params %}
{{ item.bookmark.key }} {% for param in item.params %} {{ param }} {% endfor %} {{ item.bookmark.description }}
{{ item.bookmark.url }}
{% empty %}
No bookmarks found. Run python manage.py load_bookmarks to load them.
{% endfor %}
{% endblock %}