You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

34 lines
1.3 KiB

{% extends 'base_index.html' %}
{% load static %}
{% load course_filter %}
{% block title %}Доступ на страницу закрыт{% endblock %}
{% block page_title %}Доступ на страницу закрыт{% endblock %}
{% block head %}
{% endblock %}
{% block content %}
<div class="col">
<div class="bg-light lter b-b wrapper-md">
<div class="row">
<div class="col-lg-12 col-xs-12">
<h1 class="m-n font-thin h3">
Доступ на страницу закрыт
</h1>
</div>
</div>
</div>
<div class="wrapper-md">
{% if request.user.is_authenticated %}
<p style="text-align: center;"><img src="/static/img/journal_access.png"></p>
<p style=" text-align: center;
font-size: 20px;
margin-top: 30px;">Купите курс для получения доступа на эту страницу</p>
{% else %}
<p style="text-align: center;"><img src="/static/img/get_access.png"></p>
<p style=" text-align: center;
font-size: 20px;
margin-top: 30px;">Авторизуйтесь для получения доступа на эту страницу</p>
{% endif %}
</div>
</div>
{% endblock %}