{% extends "base.html" %}
{% block title %}kvault — {{ entity.path }}{% endblock %}
{% block content %}
{% if entity.meta %}
Metadata
{% for key, value in entity.meta.items() %}
{% endfor %}
{{ key }}
{% if value is iterable and value is not string %}
{{ value | join(', ') }}
{% else %}
{{ value }}
{% endif %}