Skip to main content

A modern Django dashboard built with DaisyUI

Project description

Django Daisy v2.0 🌼

Test Status Published on Django Packages

🎉 NEW: Version 2.0 is here! Built with DaisyUI v5 and Tailwind CSS v4 for blazing-fast performance, enhanced responsiveness, and stunning new designs.


🚀 Live Demo

Try it now: https://hypy13-django-daisy.hf.space/en/admin/
Username: demo | Password: demo

RTL Demo: https://hypy13-django-daisy.hf.space/fa/admin/

ScreenShot


📖 Documentation

Full documentation: https://hypy13.github.io/django-daisy-docs/


✨ What's New in v2.0

Version 2.0 brings major improvements in performance, design, and user experience:

  • DaisyUI v5 & Tailwind CSS v4 - Lighter, faster, and more efficient
  • 🎨 New Themes & Icons - Expanded theme collection with modern iconography
  • 📱 Enhanced Responsiveness - Improved mobile experience with compact table views
  • 🎯 Redesigned Change Form - Submit buttons relocated to right sidebar on large screens
  • 📜 Recent History Component - Quick access to recent object changes in the sidebar
  • 🗑️ Improved Delete Confirmation - Cleaner, more intuitive deletion interface
  • Updated Form Controls - Modern DaisyUI v5 checkbox and input styling
  • 🔧 Performance Optimizations - Faster load times and smoother interactions
📋 Complete Changelog
  1. Upgraded to DaisyUI v5 and Tailwind CSS v4
  2. Relocated submit button row to right sidebar on large screens (change form)
  3. Added recent object history component in right sidebar (change form)
  4. Improved change list table responsiveness with compact mobile view
  5. Enhanced delete confirmation page design
  6. Updated checkbox inputs to DaisyUI v5 styling
  7. Added new themes to theme selector with updated icons
  8. Various responsive improvements and UI enhancements

✨ Core Features

  • 🌍 Fully Responsive - Seamless experience across mobile, tablet, and desktop
  • 🔄 RTL Support - Complete right-to-left language support
  • 🎨 Multi-Theme System - Switch themes effortlessly to match your brand
  • 📑 Tabbed Inline Admin - Organize related data with tabbed sections
  • 🔍 Advanced Filtering - Multi-value filters for precise navigation
  • 🚀 Optimized Performance - Lightning-fast load times with minimal overhead

⚙️ Compatibility

  • Django: 3.2 - 5.1.1 fully supported
  • Python: 3.8+

📦 Installation

Quick Install (PyPI)

pip install django-daisy

Development Install (GitHub)

pip install -e git+https://github.com/hypy13/django-daisy.git#egg=django-daisy

Configuration

Add to your INSTALLED_APPS in settings.py:

INSTALLED_APPS = [
    'django_daisy',
    'django.contrib.admin',
    'django.contrib.humanize',  # Required
    # ... your other apps
]

That's it! Your admin now has a modern, beautiful interface.


🎨 Customization

App Configuration (apps.py)

Customize individual app appearance in the sidebar:

class PollsConfig(AppConfig):
    name = 'polls'
    icon = 'fa fa-square-poll-vertical'  # FontAwesome icon
    divider_title = "Apps"  # Section divider title
    priority = 0  # Sidebar ordering (higher = top)
    hide = False  # Hide from sidebar
Global Settings (settings.py)

Configure site-wide appearance and behavior:

DAISY_SETTINGS = {
    # Branding
    'SITE_TITLE': 'Django Admin',
    'SITE_HEADER': 'Administration',
    'INDEX_TITLE': 'Hi, welcome to your dashboard',
    'SITE_LOGO': '/static/admin/img/daisyui-logomark.svg',
    
    # Customization
    'EXTRA_STYLES': [],  # Additional CSS files
    'EXTRA_SCRIPTS': [],  # Additional JS files
    'LOAD_FULL_STYLES': False,  # Load complete DaisyUI library
    'SHOW_CHANGELIST_FILTER': False,  # Auto-open filter sidebar
    'DONT_SUPPORT_ME': False,  # Hide GitHub link
    'SIDEBAR_FOOTNOTE': '',  # Custom sidebar footer text
    
    # Theme Configuration
    'DEFAULT_THEME': None,  # e.g., 'corporate', 'dark'
    'DEFAULT_THEME_DARK': None,  # Dark mode default
    'SHOW_THEME_SELECTOR': True,  # Show/hide theme dropdown
    'THEME_LIST': [
        {'name': 'Light', 'value': 'light'},
        {'name': 'Dark', 'value': 'dark'},
        # Add custom themes...
    ],
    
    # Third-Party App Customization
    'APPS_REORDER': {
        'auth': {
            'icon': 'fa-solid fa-person-military-pointing',
            'name': 'Authentication',
            'hide': False,
            'divider_title': "Auth",
        },
    },
}
Theme Configuration Examples

Single Default Theme:

DAISY_SETTINGS = {
    'DEFAULT_THEME': 'corporate',  # Always use this theme
}

Separate Light/Dark Themes:

DAISY_SETTINGS = {
    'DEFAULT_THEME': 'light',      # Light mode default
    'DEFAULT_THEME_DARK': 'dim',   # Dark mode default
}

Enforce Theme (No User Choice):

DAISY_SETTINGS = {
    'DEFAULT_THEME': 'corporate',
    'SHOW_THEME_SELECTOR': False,  # Hide selector
}

Custom Theme List:

DAISY_SETTINGS = {
    'THEME_LIST': [
        {'name': 'Light', 'value': 'light'},
        {'name': 'Corporate', 'value': 'corporate'},
        {'name': 'Luxury', 'value': 'luxury'},
    ],
}

Note: For custom DaisyUI themes, enable LOAD_FULL_STYLES: True to load all theme styles.


🔧 Advanced Features

Tabbed Inline Admin

Create tabbed inline interfaces for related objects:

from django_daisy.mixins import NavTabMixin

class ChoiceInline(admin.TabularInline, NavTabMixin):
    model = Choice
    extra = 1

@admin.register(Poll)
class PollAdmin(admin.ModelAdmin):
    inlines = [ChoiceInline]
Tabbed Fieldsets

Convert fieldsets into navigation tabs:

@admin.register(MyModel)
class MyModelAdmin(admin.ModelAdmin):
    fieldsets = (
        (None, {
            'fields': ('username', 'password')
        }),
        ('Personal Info', {
            'fields': ('first_name', 'last_name', 'email'),
            'classes': ('navtab',),  # Creates a tab
        }),
        ('Permissions', {
            'fields': ('is_active', 'is_staff', 'is_superuser'),
        }),
    )
Language Switching

Enable language selection in the admin panel:

1. Add URL pattern (urls.py):

urlpatterns = [
    path("i18n/", include("django.conf.urls.i18n")),
    # ... other patterns
]

2. Enable middleware (settings.py):

MIDDLEWARE = [
    'django.middleware.locale.LocaleMiddleware',
    # ... other middleware
]

3. Define languages (settings.py):

LANGUAGES = [
    ('en', 'English'),
    ('fa', 'Farsi'),
    # Add more languages...
]

📸 Screenshots

View Gallery

Listing View: Listing View

Change Form: Change Form

Mobile Responsive: Mobile View

Dark Theme: Dark Theme


🤝 Contributing

Contributions are welcome! Submit issues, suggestions, or pull requests on GitHub.


🙏 Acknowledgments

Special thanks to Cloud With Django for featuring Django Daisy!
Watch the demo: https://www.youtube.com/watch?v=WEKTXu1la9M


📄 License

MIT License - see LICENSE file for details


Made with ❤️ by the Django Daisy team

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django_daisy-2.0.6.tar.gz (2.5 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_daisy-2.0.6-py3-none-any.whl (2.4 MB view details)

Uploaded Python 3

File details

Details for the file django_daisy-2.0.6.tar.gz.

File metadata

  • Download URL: django_daisy-2.0.6.tar.gz
  • Upload date:
  • Size: 2.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for django_daisy-2.0.6.tar.gz
Algorithm Hash digest
SHA256 71955f7b298807ae84cc31d60a7beb6b9eadeae23542f2138e9cd7326b166e21
MD5 a987f8adb362b4b2d93c8396c0f82c3f
BLAKE2b-256 7b004c0f7ca032e518db2598f3808dbe7d57e34b88ad6f220a2d2d17f4918c84

See more details on using hashes here.

File details

Details for the file django_daisy-2.0.6-py3-none-any.whl.

File metadata

  • Download URL: django_daisy-2.0.6-py3-none-any.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for django_daisy-2.0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 534976793e984eef4618f7147bf1030f31861fb9a62af0b235e844a06ca84fd3
MD5 67a1bffe80dadf825d9977282f16defc
BLAKE2b-256 9ef0a1ba66876eb261a2c3d9338b26c9a5e8b475d3db8b96e1a8db374b2dbbf6

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page