Crème CRM
creation module : apps.py - Version imprimable

+- Crème CRM (https://www.cremecrm.com/forum)
+-- Forum : Utilisateurs (https://www.cremecrm.com/forum/forumdisplay.php?fid=5)
+--- Forum : Questions (https://www.cremecrm.com/forum/forumdisplay.php?fid=8)
+--- Sujet : creation module : apps.py (/showthread.php?tid=180)



creation module : apps.py - Patix - 08-12-2020

Code :
 def register_creme_config(self, config_registry):
       from . import models

       register_model(models.Status)

J'ai en retour

Code :
... apps.py", line 28, in register_creme_config
   register_model(models.Status)
NameError: name 'register_model' is not defined

Ne manquerait il pas quelque chose devant register_model et dans la parenthèse ?


RE: creation module : apps.py - genglert - 08-12-2020

En effet il manque "config_registry." devant "register_model(models.Status)".