{% extends "musician/base.html" %} {% load i18n %} {% block content %} {% trans "Go back" %}

{% trans "WebSite Options for" %} {{ object.name }}


{% trans "Server" %}: {{ object.target_server }}
{% trans "Domains" %}: {% for domain in object.domains.all %} {{ domain }}
{% endfor %}
{% trans "active" %}: {{ website.is_active|yesno }}
{% trans "Protocol" %}: {{ object.protocol }}
{% trans "Edit options" %}

{% trans "Contents" %}


{% trans "Webapps assigned to this website" %}

{% for option in content %} {% endfor %}
{% trans "Webapp" %} {% trans "Type " %} {% trans "Path" %}
{{ option.webapp }} {{ option.webapp.get_type_display }} {{ option.path }}
{% trans "Assigned new Webapp" %}

{% trans "Directives" %}


{% trans "Options assigned to this Website" %}

{% for option in directives %} {% endfor %}
{% trans "Name" %} {% trans "Value" %}
{{ option.name }} {{ option.value }}
{% trans "Add new directive" %} {% endblock %}