Reorganize app load order
This commit is contained in:
36
settings.py
36
settings.py
@@ -166,26 +166,26 @@ INSTALLED_APPS = (
|
||||
'scheduler',
|
||||
'job_processor',
|
||||
# Mayan EDMS
|
||||
'storage',
|
||||
'documents',
|
||||
'metadata',
|
||||
'folders',
|
||||
'tags',
|
||||
'document_comments',
|
||||
'mailer',
|
||||
'linking',
|
||||
'document_indexing',
|
||||
'sources',
|
||||
'document_acls',
|
||||
'ocr',
|
||||
'history',
|
||||
'rest_api',
|
||||
'document_signatures',
|
||||
#'workflows',
|
||||
'checkouts',
|
||||
#'bootstrap',
|
||||
'main',
|
||||
'installation',
|
||||
'storage',
|
||||
'folders',
|
||||
'tags',
|
||||
'documents',
|
||||
'document_comments',
|
||||
'document_signatures',
|
||||
'linking',
|
||||
'metadata',
|
||||
'ocr',
|
||||
'document_indexing',
|
||||
'sources',
|
||||
'mailer',
|
||||
'document_acls',
|
||||
'history',
|
||||
'workflows',
|
||||
'checkouts',
|
||||
'rest_api',
|
||||
'bootstrap',
|
||||
|
||||
# Has to be last so the other apps can register it's signals
|
||||
'signaler',
|
||||
|
||||
4
urls.py
4
urls.py
@@ -32,11 +32,11 @@ urlpatterns = patterns('',
|
||||
(r'^gpg/', include('django_gpg.urls')),
|
||||
(r'^documents/signatures/', include('document_signatures.urls')),
|
||||
(r'^mailer/', include('mailer.urls')),
|
||||
#(r'^workflows/', include('workflows.urls')),
|
||||
(r'^workflows/', include('workflows.urls')),
|
||||
(r'^checkouts/', include('checkouts.urls')),
|
||||
(r'^installation/', include('installation.urls')),
|
||||
(r'^scheduler/', include('scheduler.urls')),
|
||||
#(r'^bootstrap/', include('bootstrap.urls')),
|
||||
(r'^bootstrap/', include('bootstrap.urls')),
|
||||
)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user