Changelog: https://roxy-wi.org/changelog#7.1.1
pull/375/head
Aidaho 2024-01-18 17:05:07 +03:00
parent e5b8e6a921
commit d82b65e7d1
2 changed files with 3 additions and 3 deletions

View File

@ -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">

View File

@ -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>