{% extends "templates/base.html" %} {% block title %}{{ content.name or 'Content Page' }}{% endblock %} {% block head_include %} {% endblock %} {% macro title() %}
{{_('Back to Course')}}

{{ content.name }} ({{ position + 1 }}/{{length}})

{% endmacro %} {% macro navigation() %} {% if previous %} {{_('Previous')}} {% else %} {{ _('Back to Course') }} {% endif %} {% if next %} {% else %} {% endif %} {% endmacro %} {% macro video() %}
{{ title() }}
{% if content.duration %} {{ content.duration }} {{_('Mins')}} {% endif %} {% if content.publish_date and content.duration%} - {% endif %} {% if content.publish_date %} {{_('Published on')}} {{ content.publish_date.strftime('%d, %b %Y') }} {% endif %}
{{ content.description }}
{% endmacro %} {% macro article() %}
{{ title() }}
{% if content.author or content.publish_date %} {{_('Published')}} {% endif %} {% if content.author %} {{_('by')}} {{ content.author }} {% endif %} {% if content.publish_date %} {{_('on')}} {{ content.publish_date.strftime('%d, %b %Y') }} {% endif %}
{{ content.content }}
{% endmacro %} {% macro quiz() %}
{{ title() }}
{% endmacro %} {% block content %}
{% if content_type=='Video' %} {{ video() }} {% elif content_type=='Article'%} {{ article() }} {% elif content_type=='Quiz' %} {{ quiz() }} {% endif %}
{{ navigation() }}
{% endblock %} {% block script %} {% if content_type=='Video' %} {% elif content_type == 'Quiz' %} {% endif %} {% endblock %}