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
0
votes
1 answer

enable a model on Django Admin on Dreamhost

Hi I've created a new app (Paginas) but I cannot see inside the admin page. I've added 'paginas' to INSTALLED_APP. My admin.py is # coding=utf-8 from django.contrib import admin from .models import Pagina class PaginaAdmin(admin.ModelAdmin): …
Jorge
  • 333
  • 1
  • 5
  • 17
0
votes
1 answer

TemplateSyntaxError Caught ImportError while rendering: cannot import name prepare_lookup_value

I'm pretty new to Python (2.7) and Django (1.3.1) and I'm not sure where what the next step for debugging this issue should be. A little background, this app is running just fine in my production environment which is on an EC2 instance running…
standingwave
  • 488
  • 3
  • 8
0
votes
1 answer

404 for django-grappelli-tinymce configuration

I'm getting this in my console for my TinyMCE configuration which came with Grappelli. I know 404 means it does not exit, but what should I do to get TinyMCE options on my models.TextField() on my admin panel. I did what the documentation of…
0
votes
0 answers

Django-Grappeli: Maximum recursion depth exceeded

I have installed Grappelli Cms of Django, as indicated here After that installation, when I call the admin page the error is: RuntimeError:maximum recursion depth exceeded. How can I solve this problem? Regards Alessandro
0
votes
1 answer

Django admin generates static url with /admin/ prefixed

I'm trying to setup a second development environment for my project. I've copied over the settings from the working setup but on the new one the URLs generated by the Django admin are prefixed with /admin/. This does not happen with the other setup…
Wessie
  • 3,460
  • 2
  • 13
  • 17
0
votes
3 answers

django model inheritance and admin application

I have a django application in which I want to use model inheritance. The application contains one super model class Article and here is its code class Article(models.Model): english_title = CharField(max_length=200) arabic_title =…
0
votes
1 answer

grappelli dashboard ValueError on two admin sites

I want use two admin sites for my project. Each with grappelli dashboard. I've executed this commands: python manage.py customdashboard dashboard.py python manage.py customdashboard dashboard.py twice (once in project/project and second time in…
Павел Тявин
  • 2,529
  • 4
  • 25
  • 32
0
votes
2 answers

GenericForeignKey in admin

I try to use grappelli to get a widget for generic foreign key. This is what i need to get: http://code.google.com/p/django-grappelli/wiki/generic_2_1. I've got a model: class Circuit(models.Model): circuit_id =…
Dmitrii Mikhailov
  • 5,053
  • 7
  • 43
  • 69
0
votes
1 answer

ImproperlyConfigured at /

I'm getting an error of when I'm trying to configure my admin grappelli. Whenever my index is commented out, the admin pages work fine. But When uncommented it gives me an error of ImproperlyConfigured at /admin/. How should I be configuring the…
user805981
  • 9,979
  • 8
  • 44
  • 64
0
votes
1 answer

Cannot remove registry entries after deployment

I have a django-grappelli site running on Apache 2.2 using mod_wsgi 3.3 as middleware. And I am having two problems When I try to delete a registry entry, it just do not make anything... Also, the popup windows are not opening. It opens on the same…
Ubaldo
  • 21
  • 5
0
votes
1 answer

django manytomany field with search option

I am trying to use custom search option in manytomany field for admin panel. It does not work my way. After search I want to show selected item as a list below the search field, currently it shows comma separated value in search field. Here my code…
Jony
  • 70
  • 1
  • 8
0
votes
0 answers

Django Grappelli installed but not being applied

I've gone through the installation, here: http://django-grappelli.readthedocs.org/en/latest/quickstart.html#installation But I can't get it to work. Looking at the troubleshooting…
babbaggeii
  • 7,577
  • 20
  • 64
  • 118
0
votes
1 answer

Django nonrel and grappelli

I'm trying to install Grappelli on Django-nonrel. Because the current version of Django-nonrel is 1.3 so I use Grappelli 2.3. According to the doc http://django-grappelli.readthedocs.org/en/2.3.9/quickstart.html#setup I decided to not use…
0
votes
1 answer

Do I have to use Compass to modify CSS with Django-Grappelli?

I recently setup django-grappelli on my first django app. While I like the way it looks I want to customize the colors, and other CSS. From my research, it looks like I will have to use Compass but I've never used Compass before and want to double…
Nahanaeli Schelling
  • 1,235
  • 1
  • 12
  • 17
0
votes
1 answer

Django - I got TemplateSyntaxError when I try open the admin page. (http://DOMAIN_NAME/admin)

I use grappelly plugin. When I try open the admin page (/admin) I got TemplateSyntaxError. It says 'get_generic_relation_list' is invalid block tag. TemplateSyntaxError at /admin/ Invalid block tag: 'get_generic_relation_list', expected…
user140827
  • 65
  • 1
  • 6
1 2 3
10
11