Hello, I'm in the process of converting an app to nfa. In this app some models have their own change view. Some of these views fall-back to using the standard amin view based on some condition; like this:
from django.contrib.admin.views.main import change_stage def my_view(request, model_id): if condition: do_something_special() else: return change_stage(request, 'app_name', 'ModelName', model_id) How can I do this with nfa? By reading through the code I found that each site object has a _registry attribute that keeps track of each model's ModelAdmin instance so I could use this: from django.contrib import admin def my_view(request, model_id): if condition: do_something_special() else: return admin.site._registry[Model].change_view(request, model_id) But using a private attribute doesn't 'feel' right. Any thoughts? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---