Re: browser detection in django

2011-11-18 Thread DrBloodmoney
Well if it is IE then you can do conditional commenting for IE to detect itself: css -- 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 emai

Re: browser detection in django

2011-11-16 Thread Simon Bächler
Hi Do you know modernizr? http://www.modernizr.com/ It's a small Java script that detects browser capabilities and adds them to the 'body' tag. Also check out http://html5boilerplate.com/. There is a browser reset css that tries to get all browsers to a common base. Regards Simon On 16 Nov.,

browser detection in django

2011-11-16 Thread azonips
I have a webpage which look nice under one browser and terrible in another. I'd like to write separate css file for second browser. I'd like to know if there is possibility to check in template under which browser I am? I mean something like this: {% if browser="nice_browser" %} load css file

Re: Browser detection in Django

2008-11-07 Thread Nikolay Panov
Maybe you need something like that: http://www.djangosnippets.org/snippets/267/ Have a nice day, Nikolay. On Fri, Nov 7, 2008 at 13:36, Alex Jonsson <[EMAIL PROTECTED]> wrote: > > Hey guys, > > I'm working on a Django application where I'd like to redirect IE6 > users to a specific page enc

Browser detection in Django

2008-11-07 Thread Alex Jonsson
Hey guys, I'm working on a Django application where I'd like to redirect IE6 users to a specific page encouraging them to update their browser. How would be the most efficient way of doing this? Thanks! Alex --~--~-~--~~~---~--~~ You received this message becaus