{% extends "base.html" %} {% load bootstrap4 %} {% load widget_tweaks %} {% block title %}Client - Training Materials{% endblock title %} {% block content %}

{% include "client_navbar.html" %}

List of Materials

{% for material in materials%}
{{material.name}}
{{material.description}}
{{material.type}}
{%if material.file %} {% if material.type == "1"%}

PDF cannot be displayed.

{% elif material.type == "2"%}
{% else %}
{%endif%} {%endif%}
{%endfor%}
{% endblock content %}