{% extends "base.html" %} {% load static i18n crispy_forms_tags %} {% block title %}Create Training Material - {{ block.super }}{% endblock %} {% block customCSS %} {# 💡 Required for Summernote if you added it, otherwise remove this line #} {{ form.media.css }} {% endblock %} {% block content %}

{% trans "Create New Training Material" %}

{% trans "Upload a new document or guide for your team." %}

{% trans "Material Details" %}

{% csrf_token %} {% crispy form %}
{# 💡 Required for Summernote if you added it, otherwise remove this line #} {{ form.media.js }} {% endblock %}