diff --git a/orchestra/contrib/musician/templates/musician/website_detail.html b/orchestra/contrib/musician/templates/musician/website_detail.html new file mode 100644 index 00000000..4092003d --- /dev/null +++ b/orchestra/contrib/musician/templates/musician/website_detail.html @@ -0,0 +1,97 @@ +{% extends "musician/base.html" %} +{% load i18n %} + +{% block content %} +{% trans "Go back" %} + +

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

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

{% 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 "Directives" %}

+
+ +

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

+ + + + + + + + + + {% for option in directives %} + + + + + + {% endfor %} + +
{% trans "Name" %}{% trans "Value" %}
{{ option.name }}{{ option.value }} + + +
+ + +{% endblock %} diff --git a/orchestra/contrib/musician/templates/musician/website_list.html b/orchestra/contrib/musician/templates/musician/website_list.html index 2e1a210b..1f75a980 100644 --- a/orchestra/contrib/musician/templates/musician/website_list.html +++ b/orchestra/contrib/musician/templates/musician/website_list.html @@ -38,11 +38,11 @@ {{ website.is_active|yesno }} - -