{% extends "base.html" %} {% block content %}

🔐 QZ Tray Pairing Key Management

{% if pairing_key %}
🔑 Pairing Key: {{ pairing_key }}
đŸ–¨ī¸ Printer Name: {{ printer_name }}
⏰ Valid Until: {{ warranty_until }}
{% endif %}

📋 Active Pairing Keys

{% for key in pairing_keys %} {% endfor %}
đŸ–¨ī¸ Printer Name 🔑 Pairing Key ⏰ Valid Until đŸ› ī¸ Actions
{{ key.printer_name }} {{ key.pairing_key }} {{ key.warranty_until }}

🔐 Application License Management

{% if license_data %}
🔑 License Key: {{ license_data.license_key }}
📅 Created: {{ license_data.created_at }}
⏰ Valid Until: {{ license_data.valid_until }} {% if license_data.days_remaining is defined %} {% if license_data.days_remaining > 0 %} {{ license_data.days_remaining }} days remaining {% else %} âš ī¸ EXPIRED {% endif %} {% endif %}
{% else %}
âš ī¸ No Active License

No application license has been generated. Non-superadmin users will not be able to access the application.

{% endif %}

🔑 Generate New License

â„šī¸ License Information
{% endblock %}