{% extends 'generic/object.html' %} {% load buttons %} {% load static %} {% load helpers %} {% load plugins %} {% load i18n %} {% block content %}
{% trans "Software Product Version" %}
{% if object.documentation_url %} {% else %} {% endif %} {% if object.file_link %} {% else %} {% endif %}
{% trans "Name" %} {{ object.name }}
{% trans "Description" %} {{ object.description }}
{% trans "Manufacturer" %} {{ object.software_product.manufacturer|linkify }}
{% trans "Software Product" %} {{ object.software_product|linkify }}
{% trans "Release date" %} {{ object.release_date }}
{% trans "Documentation URL" %}{{ object.documentation_url }}{{ object.documentation_url }}
{% trans "End of support" %} {{ object.end_of_support }}
{% trans "Filename" %}{{ object.filename }}{{ object.filename }}
{% trans "File checksum" %} {{ object.file_checksum }}
{% trans "Release type" %} {{ object.get_release_type_display }}
{% 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 %}