{% extends "base.html" %} {% block title %}Мои запросы{% endblock %} {% block content %}

Мои запросы на секрет

Создать запрос
{% if requests %}
{% for req in requests %} {% endfor %}
ID Примечание Создан Срок действия Статус Действия
{{ req.token[:18] }}... {% if req.note %}{{ req.note }}{% else %}Без примечания{% endif %} {{ req.created_at|format_datetime }} {% if req.ttl_seconds > 0 %}{{ req.ttl_hours }} ч. {% else %}Истек{% endif %} {% if req.ttl_seconds > 0 %}Активен{% else %}Истек{% endif %}
{% if req.ttl_seconds > 0 %} {% else %} Истек {% endif %}
{% else %}

У вас пока нет запросов на секрет

Создать первый запрос
{% endif %} {% endblock %} {% block scripts %} {% endblock %}