mirror of https://github.com/Aidaho12/haproxy-wi
parent
e5b8e6a921
commit
d82b65e7d1
|
@ -3,7 +3,7 @@
|
|||
{% block title %}{{ lang.menu_links.history.title }} {{ lang.words[service] }}{% endblock %}
|
||||
{% block h2 %}{{ lang.menu_links.history.title }} {{ lang.words[service] }}{% endblock %}
|
||||
{% block content %}
|
||||
{% if user_status == 0 or user_plan == 'user' %}
|
||||
{% if user_subscription['user_status'] == 0 or user_subscription['user_plan'] == 'user' %}
|
||||
{% include 'include/no_sub.html' %}
|
||||
{% else %}
|
||||
<link href="/inc/css/table-6.3.9.css" rel="stylesheet" type="text/css">
|
||||
|
|
|
@ -11,12 +11,12 @@
|
|||
</style>
|
||||
<center>
|
||||
<h4>
|
||||
{% if user_status == 0 %}
|
||||
{% if user_status['user_status'] == 0 %}
|
||||
You are not subscribed. Please subscribe to have access to this feature.
|
||||
<p>
|
||||
Read <a href="https://roxy-wi.org/pricing" title="Roxy-WI pricing" target="_blank" class="link">here</a> about subscriptions
|
||||
</p>
|
||||
{% elif user_plan == 'user' or user_plan != 'support' %}
|
||||
{% elif user_status['user_plan'] == 'user' or user_status['user_plan'] != 'support' %}
|
||||
This feature is not available for your plan. To change the plan, follow this <a href="https://roxy-wi.org/pricing" title="Roxy-WI pricing" target="_blank" class="link">link</a>
|
||||
{% endif %}
|
||||
</h4>
|
||||
|
|
Loading…
Reference in New Issue