Since the formatting is quite standard (eg: you'll be using img tags for images and object tags for pdf's, etc...) you could assign it to a var in the view. This might be a violation of the MVC pattern, but it's not much worse than using the same template instead of separate ones, extending a common base.
~ Chris El s�b, 06-10-2007 a las 12:03 +0200, Bernd escribi�: > Hello, > > I'm new to web development and Python. I helped a friend with his > website, which is written in PHP. But the source code is so bad, that > I > decided to rewrite the hole page. So I found the djange webframework.I > like it and try to rewrite the page with it. > > Now I have a litte question. I try to write a template, which get a > filename and the mimetype as parameter. It looks like this > > {% ifequal mime 'image/jpeg'%} > <img src='{{media}}' alt='{{mediatext}}' /> > {% endifequal %} > > {% ifequal mime 'application/pdf' %} > <object data='{{media}}' type='{{mime}}' width='800' > height='600'> > </object> > {% endifequal %} > > But now I want to compare 'image/gif'. A gif works like a jpeg. But I > didn't find a solution to write > > {% ifequal mime 'image/jpeg' or 'image/gif'%} > or > {% if mime in ['image/jpeg', 'image/gif] '%} > > Is there any chance to compare multiple values? Or are there better > solution for my problem? > > Regards, > > Bernd > > --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---