If the canvas URL and the mobile_url is the same we can use the same templates without needing to change {% fburl %} or without needing to allow for /mobile prefixed before each view.
This seems to work:
if request.GET.get('ref') == 'web_canvas':
print "Mobile"
else:
print "Not mobile"
If the canvas URL and the mobile_url is the same we can use the same templates without needing to change
{% fburl %}
or without needing to allow for/mobile
prefixed before each view.This seems to work:
Blocked by #50