Hey guys, This is my first post in here, and I'm also rather new to Django and a lot of things are still new to me. I'm also very confused going around the documentation, so I'd like to ask directly what should I do.
Basically, what I want to do is very very simple really, but I can't exactly find in the documentation what to do. First, for the scope of my question, I have 2 models, "Response" and "Request". A Request object can have multiple Responses. In the "Response" model. Secondly, what I'm trying to achieve is to register both models in the Admin form. But with an exception: that the "Response" model doesn't show-up in the list of models that the admin backend can manage, but show it within /admin/my_app/request/1/response/ ... That is, the list of response can only be related to the give request ... in the example above, I would like to show a list of Responses that are belonging to Response with pk=1. The problem that I'm facing is that if I register the Response (admin.site.register(Response)) then the Request and Response would be shown in the main admin page, which is not I'm looking for. Now, I'm not sure how would I go about displaying the Responses in that /admin/my_app/request/1/response/ and have it use the default admin interface (look and feel, links, add button, ...) but only relevant to the Request that is being worked on. Thanks for any response, Elie -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.