05/06/2026 Initial commit

This commit is contained in:
2026-05-06 14:19:07 -04:00
parent 9da1dffd9a
commit dde18a2cd2
116 changed files with 4276 additions and 7 deletions
+18
View File
@@ -0,0 +1,18 @@
{% extends "layouts/base.html" %}
{% block title %}Feature Unavailable{% endblock %}
{% block content %}
<div class="d-flex justify-content-center align-items-center" style="min-height: 70vh;">
<div class="text-center">
<i class="bi bi-lock-fill display-1 text-warning"></i>
<h3 class="mt-3">Feature Not Available on Your Plan</h3>
<p class="text-muted">
The <strong>{{ feature }}</strong> feature is not included in your current subscription plan.
Please contact your account administrator to upgrade.
</p>
<a href="{{ url_for('dashboard.index') }}" class="btn btn-primary mt-2">
Back to Dashboard
</a>
</div>
</div>
{% endblock %}