{% extends 'base.html' %} {% load static %} {% load crispy_forms_tags %} {% block title %}Курсы | Автошкола{% endblock %} {% block content %}

Курсы

{% if user.is_authenticated and user.instructor %}
{% endif %}
{% if courses %} {% for course in courses %}
{{ course.title }}

{{ course.description|truncatewords:30 }}

{% endfor %} {% else %}
На данный момент нет доступных курсов.
{% endif %}
{% endblock %}