Friday, March 23, 2018

Personnalisation de champ sur django

Bonjour
J'ai créé la classe que voici


class Question:
     
     
def __init__(self,*arg,**kwarg):
         
self.enonce=kwarg['enonce']
          self.point=kwarg['point']
          self.proposition=arg
          self.reponse=kwarg['reponse']

Je veux creer un model en me servant de la classe Question comme un champ du model
Je ne sais pas comment m'y prendre

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/216955a3-c031-46db-8dd6-15a5078eb691%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment