Skip to content

Commit

Permalink
Adds in the front end for the location patient detail
Browse files Browse the repository at this point in the history
  • Loading branch information
fredkingham committed Jan 11, 2022
1 parent 9c207cd commit a709d44
Show file tree
Hide file tree
Showing 5 changed files with 120 additions and 10 deletions.
58 changes: 49 additions & 9 deletions elcid/assets/css/elcid.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 9 additions & 1 deletion elcid/assets/css/elcid.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions elcid/assets/css/elcid.scss
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ body{
margin-top: 25px;
}

.width-150{
width: 150px;
}

.bg-primary { background-color: $primary;}
.bg-secondary{ background-color: $secondary; }

Expand Down
6 changes: 6 additions & 0 deletions plugins/admissions/detail.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,9 @@ class AdmissionDetailView(detail.PatientDetailView):
display_name = "Admissions"
order = 9
template = "detail/admissions.html"


class LocationHistoryView(detail.PatientDetailView):
display_name = "Location History"
order = 10
template = "detail/location_history.html"
Loading

0 comments on commit a709d44

Please sign in to comment.