{% extends "base.html" %} {% block title %}License Management - AsapLoads POS{% endblock %} {% block header_title %}License Management{% endblock %} {% block content %}
License Keys
Manage branch license keys
{% if licenses %}
{% for license in licenses %} {% endfor %}
License Key Branch Issue Date Expiry Date Status Actions
{{ license.license_key }} {{ license.branch.name }} {{ license.issue_date|date:"M d, Y" }} {{ license.expiry_date|date:"M d, Y" }} {% if license.is_active %} {% if license.is_expired %} Expired {% else %} Active {{ license.days_remaining }} days remaining {% endif %} {% else %} Revoked {% endif %}
{% if license.is_active and not license.is_expired %} Revoke {% endif %} Renew
{% else %}

No license keys found. Generate a license key to get started.

{% endif %}
License Information
License Verification

Each branch requires a valid license to operate the POS system. Licenses are checked on every login and session initialization.

License Duration

Licenses can be issued for various durations from 30 days to 2 years. When a license expires, branch operations will be restricted.

License Management

Licenses can be renewed before or after expiry. You can also revoke licenses to immediately restrict access to a branch.

{% endblock %}