Django - Login from Android

2014-08-04 Thread Adrian Marshall
I have a Django app up and running and It's more mobile based than a web app. I'm new to development with both Django and Android. I've setup an API using Django-Tasty pie and I can get JSON data from my models,including the user model that comes with Django. I've implemented logging in function

Re: deploying django

2014-08-04 Thread Adrian Marshall
I've went through a few different ways. If your set on using apache, Configure Apache with Mod-WSGI on a server. Here's a Good Tutorial: http://thecodeship.com/deployment/deploy-django-apache-virtualenv-and-mod_wsgi/ If you're having trouble with that and your app isn't too demanding you can e

Re: Django - Login from Android

2014-08-05 Thread Adrian Marshall
propriately by the "client". The fact > that the client is a browser or an Android phone doesn't matter. > > Yours, > Russ Magee %-) > > > On Tue, Aug 5, 2014 at 8:18 AM, Adrian Marshall > wrote: > >> I have a Django app up and running and It's more m

Re: Admin options are just ignored

2014-08-10 Thread Adrian Marshall
Think I found the problem. You're not registering the new Admin model classes you have made. change: admin.site.register(Resguard) to this: admin.site.register(Resguard,ResguardAdmin) do the same with the rest of your admin.site.register() functions That should work! Hope that help