Mercurial > public > sg101
annotate wiki/apps.py @ 1018:02ae9a4a846a
ManifestStaticFilesStorage: get rid of STATIC_URL in templates.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 06 Dec 2015 21:49:39 -0600 |
parents | bd043677d527 |
children |
rev | line source |
---|---|
bgneal@923 | 1 from django.apps import AppConfig |
bgneal@923 | 2 |
bgneal@923 | 3 |
bgneal@923 | 4 class WikiConfig(AppConfig): |
bgneal@923 | 5 name = 'wiki' |
bgneal@923 | 6 |
bgneal@923 | 7 def ready(self): |
bgneal@923 | 8 import wiki.receivers |