Welcome! Django 95 is an admin theme for Django inspired by the Windows 95 UI.
Django 95 is in initial development and not currently recommended for production use. However, theoretically, everything should work. So, for those who are curious, please do try it out.
And if you'd like an overview of Django 95's development process, details can be found in my blog post 'How to create a Django admin theme'.
Django 95 is being built and tested against Django 5.2.
Clone or download django-95
into your project's root directory.
Rename the app directory from django-95
to django_95
.
Edit your project's settings.py
file and add 'django_95'
to INSTALLED_APPS
:
INSTALLED_APPS = [
'django_95',
'django.contrib.admin',
...
]
Note: django_95
must be added before django.contrib.admin
. This is necessary to allow any admin template override files in the django_95
app to take priority.