Tagged Questions

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
1answer
591 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
628 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
115 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
576 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
798 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 ...