kpsul/gestioncof/apps.py
2020-07-04 13:40:32 +02:00

19 lines
392 B
Python

from django.apps import AppConfig
class GestioncofConfig(AppConfig):
name = "gestioncof"
verbose_name = "Gestion des adhérents du COF"
def ready(self):
from . import signals # noqa
self.register_config()
def register_config(self):
import djconfig
from .forms import GestioncofConfigForm
djconfig.register(GestioncofConfigForm)