src/iconolab/apps.py
author ymh <ymh.work@gmail.com>
Thu, 23 Feb 2017 17:51:26 +0100
changeset 372 a9b3d3bb27af
parent 298 97b805fc88f0
child 536 7f8390504d84
permissions -rw-r--r--
correct setup.py again
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
298
97b805fc88f0 force unix line ending
ymh <ymh.work@gmail.com>
parents: 288
diff changeset
     1
from django.apps import AppConfig
97b805fc88f0 force unix line ending
ymh <ymh.work@gmail.com>
parents: 288
diff changeset
     2
97b805fc88f0 force unix line ending
ymh <ymh.work@gmail.com>
parents: 288
diff changeset
     3
class IconolabApp(AppConfig):
97b805fc88f0 force unix line ending
ymh <ymh.work@gmail.com>
parents: 288
diff changeset
     4
    name = 'iconolab'
97b805fc88f0 force unix line ending
ymh <ymh.work@gmail.com>
parents: 288
diff changeset
     5
    verbose_name = 'Iconolab'
97b805fc88f0 force unix line ending
ymh <ymh.work@gmail.com>
parents: 288
diff changeset
     6
97b805fc88f0 force unix line ending
ymh <ymh.work@gmail.com>
parents: 288
diff changeset
     7
    def ready(self):
97b805fc88f0 force unix line ending
ymh <ymh.work@gmail.com>
parents: 288
diff changeset
     8
        import iconolab.signals.handlers
97b805fc88f0 force unix line ending
ymh <ymh.work@gmail.com>
parents: 288
diff changeset
     9
        import iconolab.templatetags.iconolab_tags