{% extends "musician/users_base.html" %} {% load bootstrap4 i18n %} {% block tabcontent %}

{% trans "The main user is your system's main user on each server. You'll be able to view the logs of your websites at (/home/account/logs) and all web content, but you'll never be able to edit content on a website." %}

{% trans "This user only has write permissions in their own directory." %}

{% for systemuser in object_list %} {% if systemuser.is_main %} {% endif %} {% endfor %}
{% trans "Username" %} {% trans "Path" %}
{{ systemuser.username }} {{ systemuser.home }}/{{ systemuser.username }}
{% endblock %}