{% extends 'generic/object.html' %} {% load buttons %} {% load static %} {% load helpers %} {% load plugins %} {% load i18n %} {% block content %}
| {% 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" %} | {% if object.documentation_url %}{{ object.documentation_url }} | {% else %}{{ object.documentation_url }} | {% endif %}
| {% trans "End of support" %} | {{ object.end_of_support }} | |
| {% trans "Filename" %} | {% if object.file_link %}{{ object.filename }} | {% else %}{{ object.filename }} | {% endif %}
| {% 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 %} |