.
This commit is contained in:
@@ -16,6 +16,15 @@ class Plane(models.Model):
|
||||
class Meta:
|
||||
ordering = ('plane', )
|
||||
|
||||
class Contrast(models.Model):
|
||||
contrast = models.CharField(max_length=200)
|
||||
|
||||
def __str__(self):
|
||||
return self.contrast
|
||||
|
||||
class Meta:
|
||||
ordering = ('contrast', )
|
||||
|
||||
class Examination(models.Model):
|
||||
examination = models.CharField(max_length=200)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user