How can show two different views in one admin view(change_form.html)?

I have a custom change_form.html for a model view. In that model's
view, I want to include another view
I tried the following but it shows same view again

{% for fieldset in adminform %}
  {% include "admin/includes/Brdgauthorseditors/
authors_editors_fieldset.html" %}
{% endfor %}

{% for fieldset in adminform %}
  {% include "admin/includes/Brdgmediapublications/
media_publications_fieldset.html" %}
{% endfor %}


I understand the reason why it shows the same view. Because it is
accessing the current model's adminform. How can I access another
view's adminform?

-- 
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.

Reply via email to