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

Access granted: {{ user.username|truncatechars:16 }}

Secrets unlocked. Manage your sensitive information securely.

Credentials

{{ credentials_counter }}
{% for cred in credentials %}

{{ cred.name }}

{{ cred.get_service_display }}

Last updated: {{ cred.updated}}


{% empty %}

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

{% endfor %}

Payment Cards

{{ cards_counter }}
{% for card in cards %}

{{ card.name }}

{{ card.number }}

Expires: {{ card.expiration }}

{% empty %}

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

{% endfor %}

Notes

{{ notes_counter }}
{% for note in notes %}

{{ note.title }}

{{ note.content|truncatechars:40 }}

Last updated: {{ note.updated }}

{% empty %}

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

{% endfor %}
{% endblock %}