{% extends "templates/web.html" %} {% block title %} {{ _("Third Party Apps") }} {% endblock %} {% block page_sidebar %} {% include "templates/includes/web_sidebar.html" %} {% endblock %} {% block style %} {% endblock %} {% block page_content %}

{{ _("Third Party Apps") }}

{% if app %}

{{ app.app_name }}

{{ _("This will log out {0} from all other devices").format(app.app_name) }}
{% elif apps|length > 0 %}

{{ _("Active Sessions") }}

{% for app in apps %}
{{ app.app_name }}
{{ _("logged in") }} {{ frappe.utils.pretty_date(app.creation) }}
{% endfor %} {% else %}
{{ _("No Active Sessions")}}
{{ _("Looks like you haven’t added any third party apps.")}}
{% endif %}
{% endblock %}