Finish migrating final apps to Django 1.7
This commit is contained in:
9
mayan/apps/appearance/apps.py
Normal file
9
mayan/apps/appearance/apps.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django import apps
|
||||
from django.utils.translation import ugettext_lazy as _
|
||||
|
||||
|
||||
class AppearanceApp(apps.AppConfig):
|
||||
name = 'appearance'
|
||||
verbose_name = _('Appearance')
|
||||
9
mayan/apps/converter/apps.py
Normal file
9
mayan/apps/converter/apps.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django import apps
|
||||
from django.utils.translation import ugettext_lazy as _
|
||||
|
||||
|
||||
class ConverterApp(apps.AppConfig):
|
||||
name = 'converter'
|
||||
verbose_name = _('Converter')
|
||||
9
mayan/apps/mimetype/apps.py
Normal file
9
mayan/apps/mimetype/apps.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django import apps
|
||||
from django.utils.translation import ugettext_lazy as _
|
||||
|
||||
|
||||
class MIMETypesApp(apps.AppConfig):
|
||||
name = 'mimetype'
|
||||
verbose_name = _('MIME types')
|
||||
@@ -1,3 +0,0 @@
|
||||
from django.db import models
|
||||
|
||||
# Create your models here.
|
||||
9
mayan/apps/navigation/apps.py
Normal file
9
mayan/apps/navigation/apps.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django import apps
|
||||
from django.utils.translation import ugettext_lazy as _
|
||||
|
||||
|
||||
class NavigationApp(apps.AppConfig):
|
||||
name = 'navigation'
|
||||
verbose_name = _('Navigation')
|
||||
@@ -1,3 +0,0 @@
|
||||
from django.db import models
|
||||
|
||||
# Create your models here.
|
||||
@@ -1,3 +0,0 @@
|
||||
from django.db import models
|
||||
|
||||
# Create your models here.
|
||||
@@ -1,3 +0,0 @@
|
||||
from django.db import models
|
||||
|
||||
# Create your models here.
|
||||
@@ -1,3 +0,0 @@
|
||||
from django.db import models
|
||||
|
||||
# Create your models here.
|
||||
9
mayan/apps/storage/apps.py
Normal file
9
mayan/apps/storage/apps.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django import apps
|
||||
from django.utils.translation import ugettext_lazy as _
|
||||
|
||||
|
||||
class StorageApp(apps.AppConfig):
|
||||
name = 'storage'
|
||||
verbose_name = _('Storage')
|
||||
@@ -1,3 +0,0 @@
|
||||
from django.db import models
|
||||
|
||||
# Create your models here.
|
||||
@@ -62,19 +62,19 @@ INSTALLED_APPS = (
|
||||
# Base generic
|
||||
'acls.apps.ACLsApp',
|
||||
'common.apps.CommonApp',
|
||||
'converter',
|
||||
'converter.apps.ConverterApp',
|
||||
'django_gpg.apps.DjangoGPGApp',
|
||||
'dynamic_search.apps.DynamicSearchApp',
|
||||
'lock_manager.apps.LockManagerApp',
|
||||
'mimetype',
|
||||
'navigation',
|
||||
'mimetype.apps.MIMETypesApp',
|
||||
'navigation.apps.NavigationApp',
|
||||
'permissions.apps.PermissionsApp',
|
||||
'project_setup.apps.ProjectSetupApp',
|
||||
'project_tools.apps.ProjectToolsApp',
|
||||
'smart_settings.apps.SmartSettingsApp',
|
||||
'user_management.apps.UserManagementApp',
|
||||
# Mayan EDMS
|
||||
'appearance',
|
||||
'appearance.apps.AppearanceApp',
|
||||
'checkouts.apps.CheckoutsApp',
|
||||
'document_acls.apps.DocumentACLsApp',
|
||||
'document_comments.apps.DocumentCommentsApp',
|
||||
@@ -93,7 +93,7 @@ INSTALLED_APPS = (
|
||||
'rest_api.apps.RESTAPIApp',
|
||||
'sources.apps.SourcesApp',
|
||||
'statistics.apps.StatisticsApp',
|
||||
'storage',
|
||||
'storage.apps.StorageApp',
|
||||
'tags.apps.TagsApp',
|
||||
# Placed after rest_api to allow template overriding
|
||||
'rest_framework_swagger',
|
||||
|
||||
Reference in New Issue
Block a user