{% extends "base.html" %} {% set active_page = "tickets" %} {% block page_title %}Lizenz{% endblock %} {% block page_sub %}
{{ customer.name if customer else '?' }}
{% endblock %} {% block content %}

Status

{% if license.ticket_id %} {% endif %}
{{ {"issued": "Ausgestellt (nicht aktiviert)", "active": "Aktiv", "deactivated": "Deaktiviert", "revoked": "Widerrufen"}.get(license.status, license.status) }}
{% if license.is_lifetime %} {% else %} {% endif %}
{% if license.fingerprint %}
{% if license.hostname %}
{% endif %}
{% endif %} {% if license.last_heartbeat_at %}
{% endif %} {% if license.deactivated_at %}
{% endif %} {% if license.revoked_at %}
{% endif %}

Aktionen

Lizenzdatei herunterladen {% if can_edit and customer and customer.contact_email %}
{% endif %} {% if can_edit and license.status not in ('revoked',) %}
{% endif %} {% if current_user.has_permission('licenses.edit') %} Offline-Code verarbeiten {% endif %} {% if can_edit and license.status in ('revoked', 'issued') %}
{% endif %}
{% endblock %}