Reference¶
This document covers various components of idios.
Settings¶
AUTH_PROFILE_MODULE¶
The site-specific user profile model used by this site. This setting is used by both Django and idios for similar purposes. Example:
AUTH_PROFILE_MODULE = "myapp.Profile"
The first part, myapp, is an app on your sys.path. The second part,
Profile, is a model defined in models.py of myapp.