0
votes
1answer
25 views
Django, Cannot assign None, does not allow null values
i have this models.py
import datetime
from django.db import models
from tinymce import models as tinymce_models
from filebrowser.fields import FileBrowseField
class ItemWithMedia …
0
votes
1answer
39 views
What to use for tagging in Django 1.1
Unless I'm missing something, it seems django-tagging (0.3) doesnt work on Django 1.1.x. I was having issues then search around and it seems to be the general concensious.
What ar …
1
vote
1answer
15 views
Hot to add the ability to search in UserProfile to UserAdmin in Django | search_fields w/ ForeignKey
Hi,
I'm using Django's User management in combination with UserProfiles that are linked to the User model with ForeignKeys. Now, I'd like to make fields from the users' profiles s …
0
votes
2answers
33 views
Django Admin “Edit Selection” Action?
I'd like to write a django-admin action (for use when the user selects zero or more rows) that will allow them to edit the selected items as a group. I only need to edit one of the …
0
votes
2answers
26 views
Inline multiple one-to-one fields in Django admin
I cannot get the admin module to inline two same field models in one-to-one relations. To illustrate it, I've made the following example, a model Person uses two addresses:
class …
0
votes
1answer
21 views
Column/field level permissions in Django admin site?
Is it possible to implement column level permissions per user in the Django admin site?
Its a small project and I only need two groups of permissions.
In the docs I cant find any …
0
votes
1answer
34 views
Django: Serving admin media files
Hi!
I am trying to serve static files from another domain (sub domain of current domain).
To serve all media files I used this settings:
MEDIA_URL =
'http://media.bud-inform …
0
votes
1answer
19 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 …
0
votes
2answers
45 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 …
1
vote
3answers
75 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
46 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
35 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 …
2
votes
2answers
50 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
2answers
105 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)
…
0
votes
2answers
47 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 …
