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

🔑 Registration Key Management

Generate New Key

Generated Keys

{% if keys %}
{% for key in keys %} {% endfor %}
Key Created Expiry Used PC Actions
{{ key.key }} {{ key.created_date.split(' ')[0] if key.created_date else 'N/A' }} {{ key.expiry_date.split(' ')[0] if key.expiry_date else 'N/A' }} {{ 'Yes' if key.is_used else 'No' }} {{ key.pc_identifier or 'N/A' }}
{% else %}

No registration keys found.

{% endif %}
{% endblock %}