{% extends "base_nav.html" %} {% load humanize %} {% load i18n %} {% load staticfiles %} {% load smart_pagination %} {% block "title" %}{% trans "Browse" %}{% endblock %} {% block "css" %} {% endblock %} {% block "nav_browse" %}active{% endblock %} {% block "content" %}

{% if search_term %} {% blocktrans %}Search results for '{{ search_term }}'...{% endblocktrans %} {% else %} {% trans "Browse all items" %} {% endif %}

{{ page_obj.paginator.count }} item(s) found

{% for secret in secrets %} {% endfor %}
{% if secret not in readable_secrets %}   {% endif %} {% if secret.content_type == secret.CONTENT_PASSWORD %} {% elif secret.content_type == secret.CONTENT_FILE %} {% elif secret.content_type == secret.CONTENT_CC %} {% endif %} {{ secret.name }} {% if secret.username %} {{ secret.username }} {% endif %} {% if secret.filename %} {{ secret.filename }} {% endif %}
{% if is_paginated %}
    {% if page_obj.has_previous %}
  • {% else %}
  • {% endif %} {% for page in paginator.page_range|smart_pages:page_obj.number %} {% if page_obj.number == page %}
  • {{ page }} (current)
  • {% else %}
  • {{ page }}
  • {% endif %} {% endfor %} {% if page_obj.has_next %}
  • {% else %}
  • {% endif %}
{% endif %}
{% endblock %}