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.
15 lines
549 B
15 lines
549 B
{% extends "templates/lilcity/index.html" %} {% load static %}
|
|
{% block title %}Онлайн-школа LilCity{% endblock title%}
|
|
{% block content %}
|
|
{% if not is_purchased %}
|
|
{% include "../summer/promo.html" %}
|
|
{% include "../summer/about.html" %}
|
|
{% include "../summer/advantages.html" %}
|
|
{% include "../summer/online.html" %}
|
|
{% include "../blocks/schedule.html" %}
|
|
{% include "templates/blocks/game.html" %}
|
|
{% include "templates/blocks/partners.html" %}
|
|
{% else %}
|
|
{% include "../summer/schedule_purchased.html" %}
|
|
{% endif %}
|
|
{% endblock %}
|
|
|