{% extends 'shared/base.html' %} {% load static %} {% block title %} Homepage {% endblock %} {% block head %} {% endblock %} {% block body %}
{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
< Back to Home

Secret type: {{ model_name }}

{% if model_name == 'Login Credentials' %}

Store and manage your login details in one encrypted place.

{% elif model_name == 'Payment Cards' %}

Store and manage your payment cards in one encrypted place.

{% elif model_name == 'Security Notes' %}

Store and manage your security notes in one encrypted place.

{% endif %}

{{ model_name }} stored

{{ object_list.count }}
{% if model_name == 'Login Credentials' %} Add new {% elif model_name == 'Payment Cards' %} Add new {% elif model_name == 'Security Notes' %} Add new {% endif %}
{% for i in object_list %} {% if model_name == 'Login Credentials' %}

{{ i.name }}

{{ i.get_service_display }}

{% if i.third_party_login %} 3rd Party {% else %} Self Login {% endif %}

Last updated: {{ i.updated}}


{% elif model_name == 'Payment Cards' %}

{{ i.name }}

{{ i.number }}

Expires: {{ i.expiration }}


{% elif model_name == 'Security Notes' %}

{{ i.title }}

{{ i.content|truncatechars:40 }}

Last updated: {{ i.updated }}


{% endif %} {% empty %}

No notes yet. Click "Add new" to get started.

{% endfor %}
{% endblock %}