0
votes
2answers
40 views
Django ValueError at /admin/
Hello,
I am running Django with mod_python on a Red Hat Linux box in production. A little while ago, for a reason unknown to me, the admin stopped working, throwing a 500 error. T …
0
votes
1answer
17 views
Django Admin - add collapse to a fieldset, but have it start expanded
Is there a way to make a fieldset collapsible, but start expanded? When you add collapse to the fieldset classes, it gets the functionality but starts collapsed. I've taken a loo …
1
vote
3answers
71 views
Problems with updating records in django-admin
I'm using Django (specifically django-admin) to be the admin panel for a site that uses PHP for client-facing features. I've been messing around making the admin look exactly the w …
1
vote
1answer
37 views
Django Admin: OneToOne Relation as an Inline?
I am putting together the admin for a satchmo application. Satchmo uses OneToOne relations to extend the base Product model, and I'd like to edit it all on one page.
It is possibl …
1
vote
2answers
32 views
Django ordered ManyToManyField in admin interface
I have a legacy database with tables for documents and authors. A third table defines an ordered many to many relationship between the documents and authors, using foreign keys to …
0
votes
2answers
39 views
Negative custom Django admin FilterSpec
I'm working on a custom Django Admin FilterSpec (covered already on SO #991926). My FilterSpec is a replacement for the default filter on ForeignKey(User), and basically replaces …
0
votes
2answers
85 views
Django auto_now and auto_now_add
For Django 1.1.
I have this in my models.py:
class User(models.Model):
created = models.DateTimeField(auto_now_add=True)
modified = models.DateTimeField(auto_now=True)
…
2
votes
2answers
38 views
Django Admin - Re-authentication?
I'm in a bit of a dilemma at the moment regarding Django's admin backend. The default authentication system allows already logged-in users that have staff privileges to access the …
0
votes
1answer
39 views
Django Admin redirects not working …
I am using the latest checkout of the django trunk - when I am in the admin on the "change" page for an object/item, there is a nice little link that says "view on site".
The li …
0
votes
1answer
44 views
Inline editing of ManyToMany relation in Django
After working through the Django tutorial I'm now trying to build a very simple invoicing application.
I want to add several Products to an Invoice, and to specify the quantity of …
0
votes
2answers
67 views
Remove “add another” in Django admin screen
Whenever I'm editing object A with a foreign key to object B, a plus option "add another" is available next to the choices of object B. How do I remove that option?
I configured a …
0
votes
2answers
37 views
How do I make a Django Admin drop down list have a dependency on a search box?
I currently have a workable Django admin on the left mockup below but want it to look and function like the one on the right.
Basically, I'm creating customized menu list every …
0
votes
1answer
22 views
in django admin, can we have a multiple select based on choices
http://docs.djangoproject.com/en/dev/ref/models/fields/#choices
i've read through the documentation and this implies using a database table for dynamic data, however it states
…
0
votes
2answers
58 views
how should i store and retrieve images with django on appengine?
I'm using appengine patch with django 1.1 (came with appengine patch).
I have a page with multiple columns and multiple files.
In the admin I want to be able to upload an image and …
2
votes
1answer
26 views
Editing both sides of M2M in Admin Page
Hello all,
First I'll lay out what I'm trying to achieve in case there's a different way to go about it!
I want to be able to edit both sides of an M2M relationship (preferably o …
