{% extends "base_template.html" %}
{% block title %}Cluster {{mySystem.pk}} Details{% endblock %}
{% block styles %}
{% endblock %}
{% block headscripts %}
{% endblock %}
{% block content %}
Systems:
Name |
Owner |
Edit |
{% if myCluster %}
{% for system in myCluster.systems.all %}
{{system.name}} | {{system.owner}} | {% if request.user.is_superuser %}-{% endif %} |
{% endfor %}
{% endif %}
{% if request.user.is_superuser %}
| | + |
{% endif %}
Properties:
Key |
Value |
File |
Edit |
{% if myCluster %}
{% for property in myCluster.properties.all %}
{{property.key.name}} | {{property.value}} | {% if property.attachment %}{{property.attachment}}{% else %}None{% endif %} | {% if request.user.is_superuser %}-EDIT{% endif %} |
{% endfor %}
{% endif %}
{% if request.user.is_superuser %}
| | + |
{% endif %}
{% endblock %}
{% block footscripts %}
{% endblock %}