{% extends "base.html" %} {% load static i18n %} {% block title %}{% trans "Training Materials" %} - {{ block.super }}{% endblock %} {% block content %}

{% trans "Training Materials" %}

{% include "includes/search_form.html" with search_query=search_query %} {% if user.is_authenticated %} {% trans "Add New Material" %} {% endif %}
{% if materials %}
{% for material in materials %} {% endfor %}
{% trans "Title" %} {% trans "Created By" %} {% trans "Created" %} {% trans "Actions" %}
{{ material.title }} {{ material.created_by.username|default:"Anonymous" }} {{ material.created_at|date:"M d, Y" }}
{% include "icons/view.html" %} {% if user.is_authenticated and material.created_by == user %} {% include "icons/edit.html" %} {% endif %}
{% if is_paginated %} {% endif %} {% else %}

{% trans "No training materials found." %}

{% if user.is_authenticated %} {% trans "Create Your First Material" %} {% endif %}
{% endif %}
{% endblock %}