{% comment %} Universal Navbar Component Parameters: - title: Navbar title (default: "Django CFG") - icon: Emoji or HTML icon (default: "💎") - nav_items: List of navigation items (optional) Example: [ {'label': 'Dashboard', 'url': '/dashboard/', 'active': True}, {'label': 'Settings', 'url': '/settings/'}, ] - show_theme_toggle: Show dark mode toggle (default: True) - show_user_menu: Show user menu dropdown (default: True) - sticky: Make navbar sticky (default: True) - full_width: Make navbar full width (default: False, uses max-w-7xl) - extra_actions: Additional action buttons (optional, block content) User menu parameters: - show_profile: Show profile link in user menu (default: False) - show_logout: Show logout link in user menu (default: False) - profile_url: Custom profile URL (default: /profile/) - logout_url: Custom logout URL (default: /accounts/logout/) Usage: Basic: {% include 'django_tailwind/components/navbar.html' with title="My App" icon="🚀" %} Full width navbar: {% include 'django_tailwind/components/navbar.html' with title="Dashboard" full_width=True %} With navigation items: {% include 'django_tailwind/components/navbar.html' with title="Dashboard" nav_items=menu_items %} With user menu options: {% include 'django_tailwind/components/navbar.html' with show_profile=True show_logout=True %} In template context: menu_items = [ {'label': 'Home', 'url': '/', 'active': True}, {'label': 'About', 'url': '/about/'}, ] Custom navbar (extending): {% with title="My App" icon="🚀" %} {% include 'django_tailwind/components/navbar.html' %} {% endwith %} {% endcomment %}
{% if icon %} {{ icon }} {% endif %}

{{ title|default:"Django CFG" }}

{% if nav_items %} {% endif %}
{% if extra_actions %} {{ extra_actions }} {% endif %} {% if show_theme_toggle|default:True %} {% include 'django_tailwind/components/theme_toggle.html' %} {% endif %} {% if show_user_menu|default:True %} {% include 'django_tailwind/components/user_menu.html' with show_profile=show_profile show_logout=show_logout profile_url=profile_url logout_url=logout_url %} {% endif %}
{% if nav_items %} {% endif %}