Skip to content

Commit

Permalink
Add missing config for Django 1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
codeinthehole committed Oct 22, 2014
1 parent 26a1fd8 commit de7fa8c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions sites/sandbox/apps/dashboard/catalogue/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
default_app_config = (
'apps.dashboard.catalogue.config.CatalogueDashboardConfig')
8 changes: 8 additions & 0 deletions sites/sandbox/apps/dashboard/catalogue/config.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
from django.apps import AppConfig
from django.utils.translation import ugettext_lazy as _


class CatalogueDashboardConfig(AppConfig):
label = 'catalogue_dashboard'
name = 'apps.dashboard.catalogue'
verbose_name = _('Catalogue')

0 comments on commit de7fa8c

Please sign in to comment.