Browse Source

still setup stuff

master
Benni Baermann 4 years ago
parent
commit
a25c817728
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      input/models.py

+ 2
- 2
input/models.py View File

@ -2,8 +2,8 @@ from django.db import models
class Project(models.Model):
project_name = models.CharField(max_length=200)
project_start = models.DateTimeField('start date')
name = models.CharField(max_length=200)
start = models.DateTimeField('start date')
def __str__(self):
return self.project_name

Loading…
Cancel
Save