{% extends 'generic/object.html' %} {% load buttons %} {% load static %} {% load helpers %} {% load plugins %} {% block content %}
| Name | {{ object.name }} | |
|---|---|---|
| Description | {{ object.description }} | |
| Manufacturer | {{ object.software_product.manufacturer|linkify }} | |
| Software Product | {{ object.software_product|linkify }} | |
| Release date | {{ object.release_date }} | |
| Documentation url | {% if object.documentation_url %}{{ object.documentation_url }} | {% else %}{{ object.documentation_url }} | {% endif %}
| End of support | {{ object.end_of_support }} | |
| Filename | {% if object.file_link %}{{ object.filename }} | {% else %}{{ object.filename }} | {% endif %}
| File checksum | {{ object.file_checksum }} | |
| Release type | {{ object.get_release_type_display }} | |
| Installations | {% for installation in object.softwareproductinstallation_set.all %} {{ installation }} {% empty %} None {% endfor %} | |
| Licenses | {% for license in object.softwarelicense_set.all %} {{ license }} {% empty %} None {% endfor %} |