General Questions
What is Django Unfold?
What is Django Unfold?
django.contrib.admin and works alongside the default admin without requiring any migrations.Is Django Unfold free?
Is Django Unfold free?
Can I use Unfold with my existing Django project?
Can I use Unfold with my existing Django project?
- Use it alongside the default Django admin
- Migrate models one at a time
- Keep existing customizations while gradually adopting Unfold features
Does Unfold work with Django 5.x?
Does Unfold work with Django 5.x?
- Django 4.2 LTS
- Django 5.0
- Django 5.1 (latest)
What Python versions are supported?
What Python versions are supported?
- Django Unfold v0.82.0+: Python 3.11 or higher
- Earlier versions: Python 3.10+
Installation and Setup
Why isn't Unfold appearing after installation?
Why isn't Unfold appearing after installation?
INSTALLED_APPS. Ensure "unfold" comes before "django.contrib.admin":python manage.py collectstatic and clear your browser cache.Do I need to run migrations after installing Unfold?
Do I need to run migrations after installing Unfold?
python manage.py collectstatic to collect Unfold’s static files.Can I use Unfold in production?
Can I use Unfold in production?
- Always test in a staging environment first
- Use a specific version (avoid
pip install django-unfoldwithout version pinning) - Run
collectstaticwith--clearflag - Review the troubleshooting guide for production considerations
Features and Functionality
Can I customize the colors and theme?
Can I customize the colors and theme?
Does Unfold support dark mode?
Does Unfold support dark mode?
Can I add custom dashboard pages?
Can I add custom dashboard pages?
Does Unfold work with third-party packages?
Does Unfold work with third-party packages?
- django-import-export
- django-simple-history
- django-guardian
- django-constance
- django-celery-beat
- django-modeltranslation
- django-money
- djangoql
- And more!
Can I use the command palette?
Can I use the command palette?
UNFOLD settings or disable it with:Customization
Can I override Unfold templates?
Can I override Unfold templates?
How do I add custom CSS or JavaScript?
How do I add custom CSS or JavaScript?
Can I customize the sidebar navigation?
Can I customize the sidebar navigation?
Performance
Will Unfold slow down my admin?
Will Unfold slow down my admin?
- Use
select_related()andprefetch_related()inget_queryset() - Enable infinite pagination for large lists
- Use paginated inlines
- Optimize
list_displayfields
How can I optimize admin list views?
How can I optimize admin list views?
Troubleshooting
Static files aren't loading. What should I do?
Static files aren't loading. What should I do?
- Run
python manage.py collectstatic --clear - Clear browser cache (Ctrl+Shift+R or Cmd+Shift+R)
- Verify
STATIC_URLandSTATIC_ROOTsettings - Check web server configuration for serving static files
Forms aren't styled correctly. How do I fix this?
Forms aren't styled correctly. How do I fix this?
The sidebar is empty. Why?
The sidebar is empty. Why?
Migration and Compatibility
Can I run Unfold alongside the default Django admin?
Can I run Unfold alongside the default Django admin?
Will Unfold break my existing admin customizations?
Will Unfold break my existing admin customizations?
- Custom ModelAdmin methods: Usually work without changes
- Custom templates: May need to use Unfold’s template structure
- Custom CSS/JS: May need updates for Unfold’s class names
How do I upgrade to the latest version?
How do I upgrade to the latest version?
Components and UI
Can I use Unfold components outside the admin?
Can I use Unfold components outside the admin?
How do I add charts to my dashboard?
How do I add charts to my dashboard?
Support and Community
Where can I get help?
Where can I get help?
- Discord: Join our community for real-time chat
- GitHub Issues: Report bugs or request features
- Documentation: Search these docs for guides and examples
- Professional Support: Get expert help
How can I contribute to Unfold?
How can I contribute to Unfold?
- Report bugs or suggest features on GitHub
- Submit pull requests with fixes or features
- Improve documentation
- Help others on Discord
Is there commercial support available?
Is there commercial support available?
- Consulting: Django architecture and Unfold integration
- Support: Implementation help with 1:1 calls
- Studio: Advanced features and custom dashboards
Advanced Topics
Can I create custom admin actions?
Can I create custom admin actions?
How do I create tabbed interfaces?
How do I create tabbed interfaces?
- Fieldset tabs: Group fieldsets into tabs
- Inline tabs: Organize inlines in tabs
- Custom tabs: Create custom tab navigation
Can I use conditional fields?
Can I use conditional fields?