
* Accessible at /signup/ * Link placed on bottom of login page. * Submits a simple signup request to Adjutant. * Added overextends to based Adjutant enabled file. * Added back button to match login form to forgot password. * Change forgot password to match signup autofocus logic. Change-Id: I1628495a3c35186a45061d07d5e392dc63121ee9
10 lines
237 B
Python
10 lines
237 B
Python
# Making use of this to make a generic enabled file
|
|
# to load base adjutant-ui content.
|
|
FEATURE = "adjutant-ui-base"
|
|
|
|
# A list of applications to be added to INSTALLED_APPS.
|
|
ADD_INSTALLED_APPS = [
|
|
'adjutant_ui',
|
|
'overextends',
|
|
]
|