Reputation: 17077
Is there any module out there that could be used by my Django site to tell whether the client browser supports HTML5 and what features are supported?
Upvotes: 2
Views: 887
Reputation: 3080
Sadly no. This is something that you'll need JavaScript client to do. Especially something like http://modernizr.com/
One way to do it would be to run modernizr and send results to back end.
If you would be really optimistic, you could build a list of User-Agents and decide upon that. But good luck with keeping which things works in which version of Chrome and Firefox.
Upvotes: 3