{% extends "base.html" %} {% block content %}

Hashes hashes list management

{% for list in my_lists %} {% endfor %}
Name Cipher Created at Actions
{{ list.name }} {{ list.get_cipher_display }} {{ list.created_at }}
{% if request.user == list.owner or request.user.is_superuser %} {% else %} {% endif %}
{% for list in public_lists %} {% endfor %}
Name Cipher Created at Actions
{{ list.name }} {{ list.get_cipher_display }} {{ list.created_at }}
{% endblock %}