bmc_hub/app/modules/links/templates/index.html
Christian bc504b9257 feat: Add subscription management functionality and AnyDesk API integration
- Implemented subscription creation, updating, and rendering in script_9.js.
- Added functions for handling subscription line items, product selection, and total calculations.
- Integrated AnyDesk API for session management in test_anydesk.py.
- Created REST client test requests for API endpoints in api.http.
- Developed a script to check ESET machine status and save details in tmp_check_eset_machine.py.
2026-03-30 07:50:15 +02:00

20 lines
596 B
HTML

{% extends "shared/frontend/base.html" %}
{% block title %}Links{% endblock %}
{% block content %}
<div class="container-fluid py-4">
<div class="d-flex justify-content-between align-items-center mb-4">
<div>
<h1 class="h3 mb-1">Links / Endpoints</h1>
<p class="text-muted mb-0">Operational access layer module (phase 1 foundation)</p>
</div>
</div>
<div class="card border-0 shadow-sm">
<div class="card-body">
<p class="mb-0">Module page scaffold is active. Use API endpoints under <code>/api/v1/links</code>.</p>
</div>
</div>
</div>
{% endblock %}