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
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
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
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
4 matches
Mail list logo