views:

55

answers:

1

I want both mobile phones and regular PCs to be able to use my app by navigating to the same URL, but I want them to get different versions of the code. How do I tell Django to give different versions of the code to different clients?

+1  A: 

Detect the HTTP_USER_AGENT from your view. Read more about it on django docs.

jpartogi