diff --git a/settings.py b/settings.py index 33c4da2e59..50f4ff2126 100644 --- a/settings.py +++ b/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', diff --git a/urls.py b/urls.py index 844e2f7c05..2049180665 100644 --- a/urls.py +++ b/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')), )