{% extends 'generic/object.html' %} {% load buttons %} {% load static %} {% load helpers %} {% load plugins %} {% load i18n %} {% block content %}
{% trans "Software License" %}
{% if object.stored_location_url %} {% else %} {% endif %}
{% trans "Name" %} {{ object.name }}
{% trans "Description" %} {{ object.description }}
{% trans "Type" %} {{ object.type }}
{% trans "SPDX expression" %} {{ object.spdx_expression }}
{% trans "Software Product" %} {{ object.software_product|linkify }}
{% trans "Version" %} {{ object.version|linkify }}
{% trans "Installation" %} {{ object.installation|linkify }}
{% trans "Tenant Group" %} {{ object.tenant_group|linkify }}
{% trans "Tenant" %} {{ object.tenant|linkify }}
{% trans "Stored location" %}{{ object.stored_location_txt }}{{ object.stored_location_txt }}
{% trans "Start date" %} {{ object.start_date }}
{% trans "Expiration date" %} {{ object.expiration_date }}
{% trans "Lifetime license" %} {% if object.lifetime %}{% trans "Yes" %}{% else %}{% trans "No" %}{% endif %}
{% trans "Renewal interval" %} {% if object.renewal_interval %} {{ object.renewal_interval }} {{ object.get_renewal_interval_unit_display }} {% else %} {{ None|placeholder }} {% endif %}
{% trans "Support" %} {{ object.support }}
{% trans "License amount" %} {{ object.license_amount }}
{% trans "License file" %} {% if object.license_file %} {% trans "Download license file" %} {% else %} {{ None|placeholder }} {% endif %}
{% trans "License key" %} {% if object.license_key %}{{ object.license_key }}{% else %}{{ None|placeholder }}{% endif %}
{% trans "Provider Portal" %} {% if object.provider_portal_url %} {{ object.provider_portal_url }} {% else %} {{ None|placeholder }} {% endif %}
{% trans "Expiration notifications" %} {% if object.expiration_notifications_enabled %}{% trans "Yes" %}{% else %}{% trans "No" %}{% endif %}
{% trans "Default notification intervals" %} {% if object.default_notification_intervals %} {% trans "One month and one week before expiration" %} {% else %} {% trans "Disabled" %} {% endif %}
{% trans "Custom notification interval" %} {% if object.custom_notification_interval %} {{ object.custom_notification_interval }} {{ object.get_custom_notification_interval_unit_display }} {% else %} {{ None|placeholder }} {% endif %}
{% trans "Email notifications" %} {% if object.email_notifications %}{% trans "Enabled" %}{% else %}{% trans "Disabled" %}{% endif %}
{% trans "Notification recipients" %} {% for subscription in object.subscriptions.all %} {{ subscription.user|linkify }}{% if not forloop.last %}, {% endif %} {% empty %} {% trans "No subscribers. Users can subscribe to this license using the Subscribe action." %} {% 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 %}