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

{{ hash_list.name }} details about this hash list

{% if hash_list.description %}
Description:
{{ hash_list.description }} 
{% endif %}
Chiper:
{{ hash_list.cipher|upper }} 
Public:
{% if hash_list.public %} {% else %} {% endif %}
Owner:
{{ hash_list.owner }} 
Created:
{{ hash_list.created_at }} 
{% for hash in hash_list.hash_set.all %} {% endfor %}
Value
{{ hash.value }}
{% endblock %}