I'm using Django Grappelli as a skin for the Django admin interface. However, the design is not responsive. Users on mobile devices need to do a lot of zooming and panning. The mobile admin projects I've found so far seem to have been abandoned in their early stages. Does anyone know of one that is actively maintained?
4 Answers
Try this: https://github.com/douglasmiranda/django-admin-bootstrap
It uses Bootstrap and is BSD licensed

- 1,968
- 3
- 21
- 24
-
But it changes theme for pC's as well. is it possible to change theme only for mobile version? – Ansel Zandegran Apr 26 '16 at 14:12
-
1It doesn't work with Django 1.9+ – neosergio May 07 '16 at 13:28
Since version 1.9 Django uses a former third-party app called django-flat-theme. There's another app made by the same developer which adds responsiveness to the admin. This app is called django-flat-responsive.
That means, if you're on Django 1.9+ just add django-flat-responsive. If you're running an older version of Django you need django-flat-theme and django-flat-responsive.
As user mirek points out, all of this is already integrated into Django 2+.
This is what it looks like:

- 5,148
- 4
- 47
- 74
-
@Bashar is on point with his recommendation to use Django flat responsive which is the simplest way to go if you’re looking for a mobile friendly version of your Django admin UI. I created a video to show case the plugin in action you may have a look here [https://youtu.be/sxqZII3K8OU](https://youtu.be/sxqZII3K8OU) . You may also want to note things will get a bit weird if your mixing up this plugin with other theme apps. – Timothy Mugayi Jan 06 '17 at 07:56
-
-
1
https://code.google.com/p/django-jqmobile/ and https://code.google.com/p/django-mobileadmin/ seems interesting too compared to the other one above
using jquerymobile is very light and benefits from html5 controls which looks like a native app when managing your django admin.
it could require some tweaks when it comes to other custom django apps to work properly with all functions of that app though.

- 23
- 1
- 1
- 6
Django Jet is another responsive admin interface http://jet.geex-arts.com/
https://github.com/ 750+ stars

- 709
- 2
- 7
- 15