I\'m trying to learn python/django.
Right now, I have all of my models in models.py
Is it possible to have my models broken out so that I can have a single f
you could have a folder called "models" but then in each model class you'll need to include:
class Meta: app_label="appname goes here"
*ps. Don't forget a __ init__.py file like I always do.*