We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 716f6c9 commit cfd6699Copy full SHA for cfd6699
tagging/__init__.py
@@ -12,6 +12,7 @@
12
13
__url__ = 'https://github.com/Fantomas42/django-tagging'
14
15
+default_app_config = 'tagging.apps.TaggingConfig'
16
17
class AlreadyRegistered(Exception):
18
"""
tagging/apps.py
@@ -0,0 +1,14 @@
1
+"""
2
+Apps for tagging.
3
4
+from django.apps import AppConfig
5
+from django.utils.translation import ugettext_lazy as _
6
+
7
8
+class TaggingConfig(AppConfig):
9
+ """
10
+ Config for Tagging application.
11
+ name = 'tagging'
+ label = 'tagging'
+ verbose_name = _('Tagging')
0 commit comments