{% extends "layout.html" %} {% block title %}CPD Log{% endblock %} {% block container %}

CPDLog

There is a total of {{summary.total_hours}}h recorded over the last 3 years. {% if summary.total_hours > 150.0 %} ({{(summary.total_hours - 150)}}h more then needed!) {% else %} ({{(150 - summary.total_hours)}}h less then needed!) {% endif %}
Of that, {{expiring}}h will be expiring in the next year and {{150 - (summary.total_hours - expiring)}}h will need to be added.
There are {{(summary.total_hours - summary.total_non_tech_hours)}}h of technical and {{summary.total_non_tech_hours}}h of non-technical activities.

{% if summary.total_non_tech_hours > 37.5 %}

More than 37.5h of non-technical hours are recorded, so further hours are not included in the totals.

{% endif %}

Activities

{% include "activity_form.html" %} {% for activity in activities %} {% if not activity.expired(3) %}
{{activity.act_date}} {{activity.topic}} [{{activity.cpd_hours}}hrs]

CPD Type:
{{activity.cpd_type_code}}: {{activity.cpd_type_desc}}
{% if activity.provider %}
Provider:
{{activity.provider}}
{% endif %}
Learning Outcome:
{{activity.learning_outcome}}
{% if activity.notes %}
Notes:
{{activity.notes}}
{% endif %}

{% endif %} {% endfor %}

Activities older then 3 years old are not shown.

{% endblock container%} {% block footer %} Back to top ⬆ {% endblock footer%}