kpsul/gestioncof/apps.py
2018-10-06 13:15:33 +02:00

18 lines
391 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)