19 lines
687 B
HTML
19 lines
687 B
HTML
{% extends "tenant/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 %}
|