{% extends 'generic/object.html' %} {% load buttons %} {% load static %} {% load helpers %} {% load plugins %} {% load i18n %} {% block content %}
{% trans "Software Product Installation" %}
{% if object.device %} {% elif object.virtualmachine %} {% else %} {% endif %}
{% trans "Device" %} {{ object.device|linkify }}
{% trans "Virtual Machine" %} {{ object.virtualmachine|linkify }}
{% trans "Cluster" %} {{ object.cluster|linkify }}
{% trans "Software Product" %} {{ object.software_product|linkify }}
{% trans "Version" %} {{ object.version|linkify }}
{% trans "Licenses" %} {% for license in object.softwarelicense_set.all %} {{ license }} {% empty %} {% trans "None" %} {% endfor %}
{% include 'inc/panels/custom_fields.html' %} {% include 'inc/panels/tags.html' %} {% include 'inc/panels/comments.html' %} {% plugin_left_page object %}
{% plugin_full_width_page object %}
{% endblock %}