django-mobileadmin
django-mobileadmin copied to clipboard
mobiladmin is using admin's namespace for urls
Therefor you cannot do this in templates
{% mobiladmin:index %}
{% mobiladmin:app_model_change object.id %}
To resolve the issue simply add this to the MobileAdminSite class in sites.py:
def __init__(self, *args, **kwargs):
super(MobileAdminSite, self).__init__(*args, **kwargs)
self.name = 'mobileadmin'