{% extends "templates/lilcity/index.html" %} {% load static %} {% load thumbnail %} {% block content %} {% if not user.has_child %}
Хотите получать грамоты Lil School
по окончании месяца обучения?
{% endif %}
{% thumbnail user.photo "120x120" crop="center" as im %} {% empty %} {% endthumbnail %}
{{ user.get_full_name }}
{% if user.about %} {{ user.about }} {% endif %}
{% if is_school_purchased %} {% endif %} {% if is_camp_purchased %} {% endif %} {% if user_gift_certificates.exists %} {% for ugs in user_gift_certificates %} {% cycle 'theme_pink2' 'theme_cyan' 'theme_violet2' as theme_color silent %} {% include "payment/gift_certificate_item.html" with gift_certificate=ugs.gift_certificate user_gift_certificate=ugs %} {% endfor %} {% endif %} {% if paid.exists %} {% include "course/course_items.html" with course_items=paid %} {% endif %} {% if not is_school_purchased and not is_camp_purchased and not paid.exists and not user_gift_certificates.exists %}
Вы пока ничего не приобрели...
{% endif %}
{% if is_author %}
{% if published.exists %} {% include "course/course_items.html" with course_items=published %} {% else %}
Нет опубликованных курсов!
{% endif %}
{% endif %}
{% endblock content %}