Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
6answers
8k views

Can “list_display” in a Django ModelAdmin display attributes of ForeignKey fields?

I have a Person model that has a foreign key relationship to Book. Book has a number of fields, but I'm most concerned about "author" (a standard CharField). With that being said, in my PersonAdmin ...
6
votes
5answers
2k views

Disable link to edit object in django's admin (display list only)?

In Django's admin, I want disable the links provided on the "select item to change" page so that users cannot go anywhere to edit the item. (I am going to limit what the users can do with this list ...
3
votes
2answers
3k views

Django: accessing the model instance from within ModelAdmin?

I've got a model for Orders in a webshop application, with an auto-incrementing primary key and a foreign key to itself, since orders can be split into multiple orders, but the relationship to the ...
1
vote
2answers
288 views

How to manipulate form fields in Django dynamically within ModelAdmin?

I have a field (slug) that is "required" in the model, but want to change the field in the ModelAdmin class to be optional. If the user doesn't fill it in, it is automatically filled in by another ...
1
vote
1answer
596 views

Add Derived Field to Django Admin Change Form

I'd like to add a derived field to a default ModelAdmin.fieldsets like I would by specifying a method and adding it to the ModelAdmin.list_display property, but there doesn't seem to be an easy way to ...
1
vote
2answers
228 views

Django ManyToMany Inlines Ordering in 1.2.x

I'm using Django 1.2's new ManyToMany admin.TabularInline to display related objects in the admin app, and it works great except I can't figure out what to set the "ordering" property to so it can ...
1
vote
2answers
631 views

change list display link in django admin

I am trying to change the link for an object in the django admin list display. Here is what I have so far: class FooModelAdmin(admin.ModelAdmin): fields = ('foo','bar') list_display = ...
1
vote
2answers
144 views

Django admin: how do I add an unrelated model field to a model change/add page?

I have the following models: class Foo(models.Model): field1 = models.IntegerField() ... class Bar(models.Model): field1 = models.IntegerField() ... class Foo_bar(models.Model): ...
0
votes
1answer
178 views

exclude in ModelAdmin vs ModelForm

Is the exclude list in a ModelForm any different from an exclude list in a ModelAdmin? If my ModelForm is tied to the ModelAdmin, where do I need to specify the exclude list ideally; in the ModelForm ...
0
votes
1answer
197 views

ModelAdmin Ordering?

With the Django Admin interface, how do you ensure that objects within html select multiple are sorted in some order (prefer alphabetical)? The issue is that I have 3 models - CD, Song, Singer. One ...
0
votes
1answer
116 views

Differentiate ModelAdmin media for add/change pages in Django

To encapsulate customized functionalities in Django admin I'm providing a custom ModelAdmin class that actually looks like this: class ArticleAdmin(admin.ModelAdmin): class Media: js = ...
0
votes
0answers
70 views

Django - Access parent window in ModelAdmin

I have a class called News which have a choices field called category. Each category is also representing by classes with the News class as foreignKey field. So in admin, when I create a new category ...
0
votes
0answers
577 views

Django: Overriding ModelAdmin save_model not working

Even after obj.save(), the obj still does not have an id, so I cannot access or manipulate the m2m records. Just keep getting a "instance needs to have a primary key value before a many-to-many ...
0
votes
2answers
800 views

Override of ModelAdmin.save_model not being called

I'm using the GenerickStackedInline which is a subclass of InlineModelAdmin which goes to ModelAdmin. When I override save_model method... it's not being called. class ...