2017-08-30 14:04:15 +02:00
|
|
|
#error-container.error-403
|
2017-06-12 16:49:43 +02:00
|
|
|
#error-box
|
2016-08-19 09:19:06 +02:00
|
|
|
.error-top-container
|
2017-06-12 16:49:43 +02:00
|
|
|
.error-title Forbidden.
|
|
|
|
.error-lead
|
|
|
|
p You don't have access to this content.
|
|
|
|
|
|
|
|
| {% if current_user.is_authenticated %}
|
|
|
|
| {% if current_user.has_role('demo') %}
|
|
|
|
| {% set subscription = 'demo' %}
|
2017-08-18 14:47:42 +02:00
|
|
|
| {% elif current_user.has_cap('subscriber') %}
|
2017-06-12 16:49:43 +02:00
|
|
|
| {% set subscription = 'subscriber' %}
|
|
|
|
| {% else %}
|
|
|
|
| {% set subscription = 'none' %}
|
2016-08-19 09:19:06 +02:00
|
|
|
| {% endif %}
|
|
|
|
|
2017-06-12 16:49:43 +02:00
|
|
|
| {% if subscription == 'none' %}
|
|
|
|
hr
|
|
|
|
p
|
|
|
|
| Support Blender and get awesome stuff.
|
|
|
|
a(href="https://store.blender.org/product/membership/") Subscribe Now
|
|
|
|
| {% endif %}
|
2016-11-30 22:11:27 +01:00
|
|
|
|
2017-06-12 16:49:43 +02:00
|
|
|
| {% else %}
|
|
|
|
p
|
|
|
|
a(href="{{ url_for('users.login') }}") Login
|
|
|
|
| {% endif %}
|
2016-11-30 22:11:27 +01:00
|
|
|
|
2017-06-12 16:49:43 +02:00
|
|
|
.error-lead.extra
|
|
|
|
| {% if current_user.is_authenticated %}
|
|
|
|
p.
|
|
|
|
If you have just subscribed, please <a href="{{ url_for('users.logout') }}">log out</a> and in again.
|
|
|
|
| {% endif %}
|
|
|
|
p.
|
|
|
|
Need help? Get in touch via <a href="mailto:cloudsupport@blender.org">e-mail</a>.
|