Skip to content
This repository was archived by the owner on Feb 28, 2022. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions seadssite/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,12 @@ def reactivate_device(self, user):
self.is_active = True
self.save()




'''
model for Images displayed on the site
'''


# Required Fields
# - docfile (file) corrensponds to a file upload path
class Document(models.Model):
Expand Down
28 changes: 24 additions & 4 deletions seadssite/static/css/graph.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@
height: 370px;
}

/*-- Radio button formatting --*/
input[type="radio"] {
margin: 0 15px 0 7px;
}

/*-- Error text --*/
#bad {
Expand Down Expand Up @@ -43,6 +39,30 @@ h5 {
margin-top: 5px;
}

#daily-date{
height: 30px !important;
width: 150px !important;

}

#prev_day, #next_day{
height: 30px !important;
}

.input-group-btn {
width: 0%;
}

.right {
float: right;
}

#panels{
float:left;
padding-left: 50px;
}



/*-- Chart --*/
.c3 svg {
Expand Down
Loading