Clinic-Booking-Project
Clinic-Booking-Project copied to clipboard
A Django booking project for a health clinic.
Results
2
Clinic-Booking-Project issues
Sort by
recently updated
recently updated
newest added
class Appointment(models.Model): user = models.ForeignKey(User, on_delete=models.CASCADE, null=True, blank=True) service = models.CharField(max_length=50, choices=SERVICE_CHOICES, default="Doctor care") doctor_name = models.CharField(max_length=50) day = models.DateField(default=datetime.now) time = models.CharField(max_length=10, choices=TIME_CHOICES, default="3 PM") time_ordered = models.DateTimeField(default=datetime.now, blank=True)...