{% extends "layout/basic.html" %} {% block content %}
{%- if Object.keys(udict).length -%}
{%- else -%}
{%- endif -%}
{{ tdoc['content'] }}
{% if not handler.user.hasPriv(PRIV.PRIV_USER_PROFILE) %}

{{ _('Login to join training plan') }}

{% elif not tsdoc.enroll %}

{{ _('page.training_detail.invalid_when_not_enrolled') }}

{% endif %} {{ tdoc.description|default('')|markdown|safe }}
{% include "partials/training_detail.html" %}
{% if handler.user.hasPriv(PRIV.PRIV_USER_PROFILE) %}
{{ _('Status') }}
{% if tsdoc['enroll'] %}{{ _('Completed' if tsdoc['done'] else 'In Progress') }}{% else %}{{ _('Not Enrolled') }}{% endif %}
{% endif %} {% if tsdoc['enroll'] %}
{{ _('Progress') }}
{{ _('Completed') }} {{ (100 * tsdoc['donePids']|length / pids|length)|round|int }}%
{% endif %}
{{ _('Enrollees') }}
{{ tdoc.attend|default(0) }}
{{ _('Created By') }}
{{ user.render_inline(udoc, badge=false) }}
{% endblock %}