Add app configs

This commit is contained in:
Jan-Jelle Kester 2015-10-07 22:24:41 +02:00
parent edb93d08c9
commit 4bb432b489
4 changed files with 16 additions and 0 deletions

View file

@ -1 +1,3 @@
from __future__ import unicode_literals
default_app_config = 'auditlog.apps.AuditlogConfig'

8
src/auditlog/apps.py Normal file
View file

@ -0,0 +1,8 @@
from __future__ import unicode_literals
from django.apps import AppConfig
class AuditlogConfig(AppConfig):
name = 'auditlog'
verbose_name = "Audit log"

View file

@ -0,0 +1 @@
default_app_config = 'auditlog_tests.apps.AuditlogTestConfig'

View file

@ -0,0 +1,5 @@
from django.apps import AppConfig
class AuditlogTestConfig(AppConfig):
name = 'auditlog_tests'