示例#1
0
 def __init__(self, *args, **kwargs):
     super(Project, self).__init__(*args, **kwargs)
     assign_code(self)
示例#2
0
 def __init__(self, *args, **kwargs):
     super(Milestone, self).__init__(*args, **kwargs)
     assign_code(self)
示例#3
0
 def __init__(self, *args, **kwargs):
     super(Document, self).__init__(*args, **kwargs)
     if self.content_type:
         assign_code(
             self, Document.objects.filter(content_type=self.content_type))
示例#4
0
 def __init__(self, *args, **kwargs):
     super(Document, self).__init__(*args, **kwargs)
     if self.content_type:
         assign_code(self, Document.objects.filter(content_type=self.content_type))
示例#5
0
文件: models.py 项目: bryanriosb/PERP
 def __init__(self, *args, **kwargs):
     super(Project, self).__init__(*args, **kwargs)
     assign_code(self)
示例#6
0
文件: models.py 项目: bryanriosb/PERP
 def __init__(self, *args, **kwargs):
     super(Milestone, self).__init__(*args, **kwargs)
     assign_code(self)