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

{% trans "Training Materials" %}

{% if user.is_authenticated %} {% trans "Add New Material" %} {% endif %}
{% include "includes/search_form.html" with search_query=search_query %}
{# Additional Filters can go here if needed #}
{% if materials %}
{# View Switcher - list_id must match the container ID #} {% include "includes/_list_view_switcher.html" with list_id="training-materials-list" %} {# Card View (Default) - Must have 'row' class for grid layout #}
{% for material in materials %}
{{ material.title }}

{% trans "Created By" %}: {{ material.created_by.username|default:"Anonymous" }}
{% trans "Created On" %}: {{ material.created_at|date:"M d, Y" }}

{% trans "View" %} {% if user.is_authenticated and material.created_by == user %} {% trans "Edit" %} {% endif %}
{% endfor %}
{# Table View #}
{% 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" }}
{% if user.is_authenticated and material.created_by == user %} {% endif %}
{# Pagination (Standardized to Reference) #} {% if is_paginated %} {% endif %} {% else %}

{% trans "No training materials found" %}

{% trans "It looks like there are no materials yet. Start by adding one!" %}

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