{% extends "core/base.html" %} {% load static %} {% comment %} Base template for Channels app This template serves as the foundation for all channel-related pages in the Adtlas DAI Management System. It extends the core base template and provides: - Channel-specific navigation - CSS and JavaScript dependencies - Common UI components - Responsive layout structure Features: - Bootstrap 5 integration - DataTables for data management - Select2 for enhanced dropdowns - Chart.js for analytics - Font Awesome icons - Custom channel styling - AJAX support - Form validation - File upload handling Usage: {% extends "channels/base.html" %} {% block content %} {% endblock %} {% endcomment %} {% block title %}Channels - {{ block.super }}{% endblock %} {% block extra_css %} {{ block.super }} {% endblock %} {% block navigation %} {{ block.super }} {% endblock %} {% block content %}
{% block channel_content %} {% endblock %}
{% endblock %} {% block modals %} {{ block.super }} {% endblock %} {% block extra_js %} {{ block.super }} {% block channel_js %} {% endblock %} {% endblock %}