{% extends 'admin.html' %} {% from 'include/datatables.html' import datatables %} {% from 'include/session.html' import browser, os %} {% from 'include/modal_dialog.html' import modal_dialog, button_confirm, modal_confirm %} {% set admin_nav_active="session" %} {% block title %} {% trans %}Active Sessions{% endtrans %} {% endblock %} {% block content %}
{% trans %}This is a list of devices that are logged into this application. It may include authenticated and unauthenticated users. You may revoke any sessions that you do not recognize except your current session.{% endtrans %}
{% set buttons = [ {'text': _('All'), 'extend': 'clear'}, {'text': _('Authenticated'), 'extend': 'filter', 'column': 3, 'search': 1}, {'text': _('Anonymous'), 'extend': 'filter', 'column': 3, 'search': 0}, ] %} {% call() datatables(_('Repository list'), buttons) %}