On Tue, 2007-03-13 at 12:52 +0100, Alessandro Ronchi wrote:
> I need to make 2 or 3 different templates to be used to show an object. In 
> the 
> admin I would like to have a check list to choice wich template I will use to 
> show it.
> 
> It's possible?

Have a field in your model that allows you to select which template to
use as the "default display", so you store it with the model.

Note that you won't be able to use standard generic views to do the
displaying in this case, since the generic views requires the template
to be used to be passed in as part of the function call. However, you
could easily write a short wrapper around the generic view that extracts
the template name from the object and then calls the real generic view
with the right parameters. Or just not use generic views at all (I'm
only guessing that you are using them in the first place; maybe you
aren't).


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

Reply via email to