projects
/
panikweb-esperanzah.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
a11y: mark illustrative images with empty alt attribute
[panikweb-esperanzah.git]
/
panikweb_esperanzah
/
__init__.py
1
import django.apps
2
3
4
class Plugin:
5
def get_apps(self):
6
return [__name__]
7
8
9
class AppConfig(django.apps.AppConfig):
10
name = __name__
11
verbose_name = 'Radio Esperanzah!'
12
13
def get_before_urls(self):
14
from . import urls
15
16
return urls.urlpatterns
17
18
19
default_app_config = __name__ + '.AppConfig'