fix(ISSUE-8): try using admin form (#16)

* Remove casting to list in _get_form_data

* feat(ISSUE-8): Use Django's form and hide with css

* feat(ISSUE-8): Updated dev release on testpypi

Co-authored-by: Thu Trang Pham <thu@joinmodernhealth.com>
This commit is contained in:
Thu Trang Pham
2021-02-26 09:56:57 -08:00
committed by GitHub
parent 302e02b1e4
commit cc36492bfe
8 changed files with 113 additions and 126 deletions
+16 -12
View File
@@ -1,24 +1,28 @@
.submit-row a.cancel-link {
display: block;
background: #ba2121;
border-radius: 4px;
padding: 10px 15px;
height: 15px;
line-height: 15px;
color: #fff;
display: block;
background: #ba2121;
border-radius: 4px;
padding: 10px 15px;
height: 15px;
line-height: 15px;
color: #fff;
}
.submit-row a.cancel-link:focus,
.submit-row a.cancel-link:hover,
.submit-row a.cancel-link:active {
background: #a41515;
background: #a41515;
}
.changed-data table {
width: 100%;
width: 100%;
}
.changed-data th,
.changed-data td {
width: 30%;
white-space: nowrap;
}
width: 30%;
white-space: nowrap;
}
.hidden {
display: none;
}