{% extends "musician/base.html" %} {% load bootstrap4 i18n %} {% block content %} {% for website in object_list %} {% endfor %} {% include "musician/components/table_paginator.html" %}
{% trans "Name" %} {% trans "Url" %} {% trans "Server" %} {% trans "Is active?" %}
{{ website.name }} {% for domain in website.domains.all %} {{ website.get_protocol }}://{{ domain }}
{% endfor %}
{{ website.target_server }} {{ website.is_active|yesno }}
{% for content in website.content_set.all %} {% if website.domains.first %} {% else %} {% endif %} {% if content.webapp.type == "php" %} {% else %} {% endif %} {% if content.webapp.sftpuser %} {% else %} {% endif %} {% endfor %}
Webapp Dir /home/{{ content.webapp.account }}/webapps/{{ content.webapp }}
Url {{ website.get_protocol }}://{{ website.domains.first }}{{ content.path }}
TypePHP {{ content.webapp.type_instance.get_detail }}{{ content.webapp.type }}
SFTP user {{ content.webapp.sftpuser }} {% trans "Update password" %} FTP user {{ content.webapp.account.main_systemuser }} {% trans "Update password" %}
{% endblock %}