{% extends "layout.html" %} {% block title %}CPD Log{% endblock %} {% block container %}
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.
More than 37.5h of non-technical hours are recorded, so further hours are not included in the totals.
{% endif %}
Activities older then 3 years old are not shown.
{% endblock container%} {% block footer %} Back to top ⬆ {% endblock footer%}