From 88bfe2936506f126ee9407b3426eb6cf33d974ac Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sat, 22 Sep 2012 00:51:33 -0400 Subject: [PATCH] Register setup link in registry --- apps/smart_settings/registry.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/smart_settings/registry.py b/apps/smart_settings/registry.py index 1bdf1ad6f5..fe35403804 100644 --- a/apps/smart_settings/registry.py +++ b/apps/smart_settings/registry.py @@ -3,9 +3,11 @@ from __future__ import absolute_import from django.utils.translation import ugettext_lazy as _ from .icons import icon_settings +from .links import link_settings name = 'smart_settings' label = _(u'Smart settings') description = _(u'Handles the configuration settings of all apps') icon = icon_settings dependencies = ['app_registry'] +setup_links = [link_settings]