{% extends "base.html" %} {% from 'include/input_macros.html' import copy_to_clipboard %} {% block title %}{{ lang.menu_links.history.title }} {{ lang.words[service] }}{% endblock %} {% block h2 %}{{ lang.menu_links.history.title }} {{ lang.words[service] }}{% endblock %} {% block content %} {% if user_subscription['user_status'] == 0 or user_subscription['user_plan'] == 'home' %} {% include 'include/no_sub.html' %} {% else %}
| {{lang.words.service|title()}} | {{lang.words.user|title()}} | {{lang.words.service|title()}} IP | {%if service == 'cluster' %}{{lang.words.cluster|title()}} {%else%}{{lang.words.server|title()}}{% endif %} | {{lang.words.action|title()}} | {{lang.words.date|title()}} | {{lang.words.time|title()}} |
|---|---|---|---|---|---|---|
| {% if h.service is not none %} {{h.service[0].upper()}}{{h.service[1:]}}{% endif %} | {% for u in users %} {% if u.user_id == h.user_id %} {{ u.username }} {% endif %} {% endfor %} | {{ copy_to_clipboard(id=h.ip, value=h.ip) }} | {{h.hostname}} | {{h.action}} | {{h.date|strftime('%Y %m %d')}} | {{h.date|strftime('%H:%M:%S')}} |