{% extends "base_resource.html" %} {% load i18n %} {% block entity_content %}

Logins

{% trans "Logins include every username and password combination in your membership. Logins can be used for one or more things. For example, you can have a login that only can access Nextcloud, or one that can access Nextcloud, use our Instant Message system and receive emails." %}

{% trans 'New Login' %} {% if entity_list %} {% for entity in entity_list %} {% endfor %}
{% trans 'First Name' %}{% trans 'Username' %}{% trans 'Status' %}{% trans 'Actions' %}
{{ entity.first_name }} {{ entity.username }} {{ entity.get_display_status }} {% trans 'Edit' %} {% trans 'Delete' %} {% if entity.display_as_disabled %} {% trans 'Enable' %} {% else %} {% trans 'Disable' %} {% endif %}
{% if is_paginated %} {% endif %} {% endif %} {% endblock %}