16 lines
318 B
Python
16 lines
318 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(max_length=100)
|
|
|