{% extends 'netbox_slm/object.html' %} {% load helpers %} {% load plugins %} {% load render_table from django_tables2 %} {% load view_helpers %} {% load perms %} {% block extra_controls %} {{ block.super }} {% endblock %} {% block content %}
Software Product
Name {{ object.name }}
Versions {% for version in object.softwareproduct_versions.all %} {{ version }} {% endfor %}
{% include 'inc/custom_fields_panel.html' %}
{% include 'extras/inc/tags_panel.html' with tags=object.tags.all url='plugins:netbox_slm:softwareproduct_list' %}
Versions
{% for version in versions %} {% endfor %}
NAME Actions
{{ version.name|truncatechars:32 }} {% if request.user|can_change:object %} {% plugin_edit_button version %} {% endif %} {% if request.user|can_delete:object %} {% plugin_delete_button version %} {% endif %}
{% endblock %}