10
votes
Beginner: Trying to understand how apps interact in Django
Take a look at django's built-in contenttypes framework:
django.co …
3
votes
Django: How can I use my model classes to interact with my database from outside Django?
Depending on your specific needs, django-command-extensions might save you a bit of time. To …
0
votes
Generic many-to-many relationships
You might get around this problem by simplifying your schema to include a single Client table with a flag to indicate what type of client it was, instead of having two separate models. …
2
votes
django and executing a separate .py to manipute a database
You might also check out django-extensions, which has a built-in manage.py extension called "runscript" that execu …
