GRC common is a Django app to conduct GRC common info.
Detailed documentation is in the "docs" directory.
Add "common" to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [ ... 'grc_common', 'grc_account ]
Add "USER_TYPE" setting to your django setting like this:
USER_TYPE = 0 # 0 - applicant # 1 - employer
Include the polls URLconf in your project urls.py like this:
path('common/', include('grc_common.urls')), path('account/', include('grc_account.urls')),
Add account model
TBD
- Run
python manage.py migrate
to create the commons models.