16 lines
367 B
Python
16 lines
367 B
Python
from django.db import models
|
|
import datetime
|
|
|
|
|
|
# TITLE_CHOICES = [
|
|
# ('MR', 'Mr.'),
|
|
# ('MRS', 'Mrs.'),
|
|
# ('MS', 'Ms.'),
|
|
# ]
|
|
#
|
|
# class HoursInput(models.Model):
|
|
# date = models.DateField(default=datetime.date.today)
|
|
# hours_number = models.IntegerField()
|
|
# # workplace = models.CharField(required=True, max_length=100, choices=TITLE_CHOICES)
|
|
#
|