Re: css templates

2010-12-06 Thread het.oosten
Here you find a page about serving multiple templates on the same site (and saving the preference in a session): http://www.packtpub.com/article/multiple-templates-in-django -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group,

Re: css templates

2010-12-06 Thread Shamail Tayyab
Hi, Well here is an approach, you can use the Django's template engine for generating dynamic CSS as well... lets assume your templates path is TEMPLATES Now create a (minimal) file called style.css in your TEMPLATES like this: h1 { font-size: {{font_size}}; text-decoration: {{text_dec

css templates

2010-12-06 Thread Jonas Geiregat
Hello, I'm developing a application that has the ability to be viewed with two stylesheets. There are some differences between the stylesheets. It's not only a different CSS file that is loaded but some pages also have different HTML output. How could something like this be implemented within th