{% extends "base.html" %} {% block title %}{{ lang.p_s_page.p_s_title_history }}{% endblock %} {% block h2 %}{{ lang.p_s_page.p_s_title_history }}{% endblock %} {% block content %} {% if user_subscription['user_status'] == 0 %} {% include 'include/no_sub.html' %} {% else %} {% if history != '' %} {% for t in history %} {% set date_time = t.date|string %} {% endfor %} {% else %} Table is empty {% endif %}
{{lang.words.status|title()}} {{lang.words.host|title()}} {{lang.words.port|title()}} {{lang.phrases.possible_service_name}} {{lang.words.date|title()}} {{lang.words.time|title()}}
{% if t.status == 'opened' %} {% set color = '#5ad05a' %} {% else %} {% set color = '#be2424' %} {% endif %} {{t.status |upper}} {{t.serv}} {{t.port}} {{t.service_name}} {{date_time.split(' ')[0]}} {{date_time.split(' ')[1]}}
{% endif %} {% endblock %}