{% extends 'training_template.html' %} {% load lesson_extras %} {% block training_content %}

Welcome to your club training logbook. From here you can lookup all your upcoming and past lessons including lesson feedback.

Training For Current Qualification
{% for qual in quals %}
{% if profile.top_qual == qual %} {% elif profile.training_for == qual %} {% endif %} {{ qual.title }}
{% endfor %}

Upcoming Training

{% if profile.training_for != None %}

Lessons

{# templates/lesson_list_template_with_dates.html #} {% show_upcoming_lessons profile %} {% endif %}

SDCs

{% if profile.upcoming_sdcs.exists %} {% for psdc in profile.upcoming_sdcs %} {% endfor %}
{{ psdc.sdc }} {{ psdc.datetime }}
{% else %}

You're not registered on any upcoming SDCs

{% endif %}
{% endblock %}