Add default_app_config value to each app. Closes issue GL #216.

This commit is contained in:
Roberto Rosario
2015-10-19 02:57:00 -04:00
parent 5167e91c90
commit f9940f1fd0
33 changed files with 141 additions and 32 deletions

View File

@@ -36,7 +36,7 @@ ALLOWED_HOSTS = []
INSTALLED_APPS = (
# Placed at the top so it can override any template
'appearance.apps.AppearanceApp',
'appearance',
# 3rd party
'suit',
# Django
@@ -64,38 +64,38 @@ INSTALLED_APPS = (
'solo',
'widget_tweaks',
# Base generic
'acls.apps.ACLsApp',
'authentication.apps.AuthenticationApp',
'common.apps.CommonApp',
'converter.apps.ConverterApp',
'django_gpg.apps.DjangoGPGApp',
'dynamic_search.apps.DynamicSearchApp',
'lock_manager.apps.LockManagerApp',
'mimetype.apps.MIMETypesApp',
'navigation.apps.NavigationApp',
'permissions.apps.PermissionsApp',
'smart_settings.apps.SmartSettingsApp',
'user_management.apps.UserManagementApp',
'acls',
'authentication',
'common',
'converter',
'django_gpg',
'dynamic_search',
'lock_manager',
'mimetype',
'navigation',
'permissions',
'smart_settings',
'user_management',
# Mayan EDMS
'checkouts.apps.CheckoutsApp',
'document_comments.apps.DocumentCommentsApp',
'document_indexing.apps.DocumentIndexingApp',
'document_signatures.apps.DocumentSignaturesApp',
'document_states.apps.DocumentStatesApp',
'documents.apps.DocumentsApp',
'events.apps.EventsApp',
'folders.apps.FoldersApp',
'installation.apps.InstallationApp',
'linking.apps.LinkingApp',
'mailer.apps.MailerApp',
'metadata.apps.MetadataApp',
'mirroring.apps.MirroringApp',
'ocr.apps.OCRApp',
'rest_api.apps.RESTAPIApp',
'sources.apps.SourcesApp',
'statistics.apps.StatisticsApp',
'storage.apps.StorageApp',
'tags.apps.TagsApp',
'checkouts',
'document_comments',
'document_indexing',
'document_signatures',
'document_states',
'documents',
'events',
'folders',
'installation',
'linking',
'mailer',
'metadata',
'mirroring',
'ocr',
'rest_api',
'sources',
'statistics',
'storage',
'tags',
# Placed after rest_api to allow template overriding
'rest_framework_swagger',
)