django-mobile icon indicating copy to clipboard operation
django-mobile copied to clipboard

Detect mobile browsers and serve different template flavours to them.

Results 29 django-mobile issues
Sort by recently updated
recently updated
newest added

This closes #77 and #72.

Does this support 1.10 and on? Feels like it doesn't since I get the error: `AttributeError: 'Settings' object has no attribute 'TEMPLATE_LOADERS'` when I try to run django-mobile on anything...

makes it compatible with django 1.10 style middleware (ref: https://docs.djangoproject.com/en/1.11/topics/http/middleware/#upgrading-pre-django-1-10-style-middleware). This breaks compatibility with django 1.8 and 1.9, since `MiddlewareMixin` introduced with django 1.10

I added a Django 1.10 support by fetching the loaders in TEMPLATES instead of TEMPLATE_LOADERS. I now have problems while running the tests: test_ipad and test_motorola_xoom are failing because for...

Example middleware will not set `request.flavour` when HTTP_USER_AGENT header is empty.

Hello! We are using django-mobile in our project. We use Django 1.9 and experienced trouble with cached loader: it ruined the application down with exceptions: 1. `./manage.py runserver` just crashed...

We've used this package on a site (American Experience) and while it's done a great job for several years, we're getting complaints from some users that their browser is being...

`UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 48: ordinal not in range(128)`

Hey I've got it to work but when I created the 'mobile/directory/venue_index.html and venue_list.html it doesn't use the templates. Sure it's some small thing I just missed. ``` python class...