Questions tagged [django-grappelli]

django-grappelli is a grid-based alternative/extension to the Django administration interface

django-grappelli is a grid-based alternative/extension to the Django administration interface.

154 questions
6
votes
0 answers

django admin tools and grappelli together

Is it possible to have django grappeli and django admin tools menu running together? I've installed both, but only see grappeli or admin tools (depending on order in INSTALLED_APPS). I found old source that says django admin tools and grappelli work…
aisbaa
  • 9,867
  • 6
  • 33
  • 48
5
votes
1 answer

Django Admin NonExistentTimeError in date_hierarchy

I just got an error in Django Admin. This is the locally reproduced log: NonExistentTimeError at /admin/{blah}/ 2015-10-18 00:00:00 Request Method: GET Request URL: http://127.0.0.1:8000/admin/{blah}/?q=someuser%40hotmail.com Django Version:…
5
votes
1 answer

How can I get the grappelli autocomplete widget to work in place of a ModelMultipleChoiceField (in the one-to-many direction)?

Using the Django Grappelli admin tools, I can configure a ForeignKey (many-to-one) field to display as an autocomplete widget, rather than a drop down field, as follows: class MyModel(models.Model): related = models.ForeignKey(RelatedModel,…
Troy
  • 21,172
  • 20
  • 74
  • 103
4
votes
4 answers

Django Grappelli Error

I'm having issues with Django Grappelli. It seems to be loading the CSS just fine, but the styling seems... off. Perhaps some pictures would clarify what I mean:
Leeroy
  • 41
  • 1
  • 2
4
votes
3 answers

Django: Grappelli custom dashboard

I'm having problems with the Dashboard of Grappelli because I cannot see any change in my admin interface. What I'm trying to do is to show my models in different boxes. This is my configuration: myproj ├── myproj │ ├──url.py │ …
loar
  • 1,505
  • 1
  • 15
  • 34
3
votes
4 answers

Comparison between django-admin-tools and django-grappelli

We're using django-admin interface for the backoffice of our own apps, but it we do expose it to our clients. I'm considering going with either django-admin-tools or grappelli, to conveniently add modules and additional interactivity to the…
qdot
  • 6,195
  • 5
  • 44
  • 95
3
votes
2 answers

django admin login failure with valid user

I've just created a new django app but am unable to log into the (grappelli) admin with a valid superuser. I've checked the user in the shell - >>> from django.contrib.auth import authenticate >>> user = authenticate(username='admin',…
Aidan Ewen
  • 13,049
  • 8
  • 63
  • 88
3
votes
2 answers

Add link to main page on grappelli admin

Is there a simple way to add a link back to the main site when using the grappelli admin interface with django? So when the user goes into the admin interface at http://myurl/admin/ I'd like a link somewhere back to http://myurl/ for the main…
3
votes
0 answers

Grappelli/Django IE9/10 compatibility issues

I recently installed the Grappelli theme for my Django project. It looks fine in all browsers (Chrome, Firefox, Opera) except Explorer 9 & 10. here's an example from chrome: and here's an example from IE10: What could be the problem? Thanks EDIT:…
ilcord
  • 314
  • 1
  • 5
  • 15
3
votes
1 answer

Overriding templates when using Grappelli

I'm using Grappelli with Django. When I follow the procedure as outlined in the Django docs to override a specific template for a specific model, it appears that Django (or Grappelli??) are struggling to render the template correctly. I have copied…
Roger
  • 4,737
  • 4
  • 43
  • 68
3
votes
1 answer

Autocomplete in django grappelli - no "add" button

I have a ForeignKey field in admin which is rendered using django-grappelli like that: However when I use grappelli autocomplete lookups the field is rendered without "add" button: How can I have both: grappelli's autocomplete and "+" button?…
laszchamachla
  • 763
  • 9
  • 21
3
votes
3 answers

django-grappelli not working

I am unable to get django-grappelli working. Below is what I did - Installed using pip install django-grappelli. Added 'grappelli' in INSTALLED_APPS before the 'django.contrib.admin' . In urls.py, added URL definition url(r'^grappelli/',…
Ravi Kumar
  • 1,382
  • 16
  • 22
3
votes
2 answers

Django custom admin dashboard error

I tried to use django-grappelli dashboard, and the admin interface is giving error. Django Version: 1.4.1 Exception Type: ImportError Exception Value: No module named dashboard In template…
bsr
  • 57,282
  • 86
  • 216
  • 316
2
votes
7 answers

Django - Error: No module named grappelli

I followed the installation guide for Grappelli: Installed django-grappelli $ pip install django-grappelli Modified settings.py INSTALLED_APPS = ( 'grappelli', 'django.contrib.admin', ) my urls.py urlpatterns = patterns('', …
Pierre de LESPINAY
  • 44,700
  • 57
  • 210
  • 307
2
votes
2 answers

Django static files not consistent between DEBUG=True and after `collectstatic`

My "Select all {amount} {model}s" action, which should be in the actions bar while viewing a model page in the Django admin, does not work in production. Expected behaviour, as recorded running locally with DEBUG=True in…
1
2
3
10 11