https://github.com/structuralrealist/django-content-studio
Modern & flexible Django admin
https://github.com/structuralrealist/django-content-studio
admin cms django django-admin
Last synced: 12 months ago
JSON representation
Modern & flexible Django admin
- Host: GitHub
- URL: https://github.com/structuralrealist/django-content-studio
- Owner: StructuralRealist
- License: mit
- Created: 2025-07-11T06:42:56.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2025-07-13T09:14:13.000Z (12 months ago)
- Last Synced: 2025-07-13T09:26:03.610Z (12 months ago)
- Topics: admin, cms, django, django-admin
- Language: Python
- Homepage:
- Size: 64.5 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Django Content Studio
[](https://badge.fury.io/py/django-content-studio)
[](https://pypi.org/project/django-content-studio/)
[](https://www.djangoproject.com/)
[](LICENSE)
Django Content Studio is a modern, flexible alternative to the Django admin.
> This package is still under development
## 🚀 Quick Start
### Installation
☝️ Django Content Studio depends on Django and Django Rest Framework.
```bash
pip install django-content-studio
```
### Add to Django Settings
```python
# settings.py
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'rest_framework',
'content_studio', # Add this
# ... your apps
]
```
### Add URLs
```python
# urls.py
urlpatterns = [
path("admin/", include("content_studio.urls")),
# ... your urls
]
```
## 🐛 Issues & Support
- 🐛 **Bug Reports**: [GitHub Issues](https://github.com/StructuralRealist/django-content-studio/issues)
- 💬 **Discussions**: [GitHub Discussions](https://github.com/StructuralRealist/django-content-studio/discussions)
- 📧 **Email**: leon@devtastic.io
## 📄 License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
## 🙏 Acknowledgments
- Built with React and Tailwind CSS
- Inspired by the original Django admin
- Thanks to all contributors and the Django community
## 🔗 Links
- [PyPI Package](https://pypi.org/project/django-content-studio/)
- [GitHub Repository](https://github.com/StructuralRealist/django-content-studio)
- [Changelog](CHANGELOG.md)
---
Made in Europe 🇪🇺 with 💚 for Django