vote up 0 vote down star

Let's say I want to use a different template for the add page but not the edit. What would be the best way to accomplish that? I was thinking either subclassing add_view or change_view, or alternatively maybe subclass some InlineModelAdmin method. What's your guys take on this? Thanks.

flag

64% accept rate
What framework are you using? – Konrad Rudolph Aug 25 at 9:03
django, sorry about that – orwellian Aug 25 at 9:04

2 Answers

vote up 1 vote down

A good start might be to look at how it's done in django.contrib.auth.admin.UserAdmin for example:

http://code.djangoproject.com/browser/django/trunk/django/contrib/auth/admin.py

I would say subclassing add_view is the way to go here.

link|flag
Thanks for the answer but the User Admin doesn't utilize any inlines. – orwellian Aug 25 at 18:11
vote up 0 vote down

This is a pretty crappy solution but here is how I solved it:

class FooInline(admin.TabularInline):
    model = Foo

    def get_fieldsets(self, request, obj=None): 
       url = request.get_full_path()
       if '/add/' not in url:
           self.template = 'listing.html'
       return super(FooInline, self).get_fieldsets( request, obj)
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.