Project

General

Profile

Download (239 Bytes) Statistics
| Branch: | Tag: | Revision:

from django.db import models

class Patient(models.Model):

class Meta:
app_label = 'cale_base'

firstname = models.CharField(max_length=150)
lastname = models.CharField(max_length=150)
# TODO add other fields




(4-4/7)