Detect mobile browser (not just iPhone) in python view
问题 I have a web application written in Django that has one specific page I'd like to implement a mobile version of the template (and slightly different logic) for. I'd like to be able to implement it ala this sudo code: def(myView) do some stuff if user-is-on-a-mobile-device: do some stuff return (my mobile template) else: do some stuff return (my normal template) I don't have a huge amount of time and I'm pretty early on in my coding learning curve :) - I found what looks to be a very powerful