{% extends 'generic/object.html' %} {% load buttons %} {% load static %} {% load helpers %} {% load plugins %} {% load i18n %} {% block content %}
{% trans "Software Product" %}
{% trans "Name" %} {{ object.name }}
{% trans "Description" %} {{ object.description }}
{% trans "Manufacturer" %} {{ object.manufacturer|linkify }}
{% trans "Versions" %} {% for version in object.softwareproductversion_set.all %} {{ version }} {% empty %} {% trans "None" %} {% endfor %}
{% trans "Installations" %} {% for installation in object.softwareproductinstallation_set.all %} {{ installation }} {% empty %} {% trans "None" %} {% endfor %}
{% 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 %}