{% 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.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 %} |