forked from DGNum/gestioCOF
14 lines
351 B
Python
14 lines
351 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class GestioncofConfig(AppConfig):
|
|
name = 'gestioncof'
|
|
verbose_name = "Gestion des adhérents du COF"
|
|
|
|
def ready(self):
|
|
self.register_config()
|
|
|
|
def register_config(self):
|
|
import djconfig
|
|
from .forms import GestioncofConfigForm
|
|
djconfig.register(GestioncofConfigForm)
|