Skip to content

Commit

Permalink
minor update
Browse files Browse the repository at this point in the history
  • Loading branch information
EvelynXZY committed Apr 29, 2022
1 parent fe2dc39 commit 18c26e8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion phittest/pages/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class Survey(models.Model):
)
survey_id = models.AutoField(primary_key=True)
user = models.ForeignKey(User, on_delete=models.CASCADE, default=0)
date = models.DateField(null=True, auto_now_add=True) #auto_now_add=True
date = models.DateField(null=True,auto_now_add=True) #auto_now_add=True
incomplete_emptying = models.IntegerField(blank=False, null=True, default=0)
frequency = models.IntegerField(blank=False, null=True, default=0)
intermittency = models.IntegerField(blank=False, null=True, default=0)
Expand Down
4 changes: 3 additions & 1 deletion phittest/static/register.css
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ form{
background-color: rgba(255, 255, 255, .3);
width: 100%;
height:100%;
min-height: 1050px;
max-height: 1050px;
min-height:650px;
max-width: 840px;
padding:15px;
border-radius:20px;
Expand Down Expand Up @@ -65,6 +66,7 @@ h1{
.title{
text-shadow: 2px 2px 4px rgba(0, 0, 0, .2);
opacity: 0.9;
margin-top:20px;
}

input{
Expand Down

0 comments on commit 18c26e8

Please sign in to comment.