-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
-
+
+
+
diff --git a/webapp/app/scripts/controllers/header-controller.js b/webapp/app/scripts/controllers/header-controller.js
index fc660b9a..cc84ab2f 100644
--- a/webapp/app/scripts/controllers/header-controller.js
+++ b/webapp/app/scripts/controllers/header-controller.js
@@ -323,4 +323,24 @@ angular.module('rippleDemonstrator')
$scope.searchExpression = expression;
$scope.searchFocused = true;
});
+
+ // Mobile Nav (New)
+ $scope.currentNavTab = ''; // search, notifications or user
+
+ $scope.changeNavTab = function(newTab){
+
+ // Is tab already expanded?
+ if( $scope.currentNavTab == newTab ){
+ $scope.currentNavTab = '';
+ } else {
+ $scope.currentNavTab = newTab;
+ }
+ }
+
+ $scope.activeNavTab = function(thisTab){
+ if( thisTab == $scope.currentNavTab ){
+ return 'active';
+ }
+ }
+
});
diff --git a/webapp/app/scripts/controllers/patient-list-full.js b/webapp/app/scripts/controllers/patient-list-full.js
index fa53d959..436f4def 100644
--- a/webapp/app/scripts/controllers/patient-list-full.js
+++ b/webapp/app/scripts/controllers/patient-list-full.js
@@ -11,6 +11,7 @@ angular.module('rippleDemonstrator')
$scope.noResults = '';
$scope.tab = 'patientInfo';
+ $scope.tabName = 'Patient Info';
$scope.patients = [];
$rootScope.searchMode = true;
@@ -168,14 +169,17 @@ angular.module('rippleDemonstrator')
$scope.viewPatients = function () {
$scope.tab = 'patientInfo';
+ $scope.tabName = 'Patient Info';
};
$scope.viewDateTime = function () {
$scope.tab = 'dateTime';
+ $scope.tabName = 'Date / Time';
};
$scope.viewCounts = function () {
$scope.tab = 'counts';
+ $scope.tabName = 'Counts';
};
diff --git a/webapp/app/styles/sb-admin-2.css b/webapp/app/styles/sb-admin-2.css
index 6c155c38..d44c72c8 100644
--- a/webapp/app/styles/sb-admin-2.css
+++ b/webapp/app/styles/sb-admin-2.css
@@ -16,13 +16,14 @@ body {
padding: 0 15px;
min-height: 568px;
background-color: transparent;
+ padding-bottom: 50px;
}
@media(min-width:768px) {
.page-wrapper {
position: inherit;
margin: 0 0 0 250px;
- padding: 0 30px;
+ padding: 0 30px 50px 30px; /* 50px added to bottom to avoid footer overlapping */
/* border-left: 1px solid #e7e7e7; */
}
}
diff --git a/webapp/app/styles/themes/main.scss b/webapp/app/styles/themes/main.scss
index 08f236b2..73c6b014 100644
--- a/webapp/app/styles/themes/main.scss
+++ b/webapp/app/styles/themes/main.scss
@@ -16,6 +16,10 @@ body,
margin-right: auto;
}
+.section-content {
+ margin-top: 15px;
+}
+
body {
background: url($background-image-url) center 100px no-repeat #ffffff;
background-size: 100% auto;
@@ -108,16 +112,20 @@ li {
/* Index */
.section {
- padding-right: 15px;
+ /* padding-right: 15px; */
}
.section-north {
min-height: 74px;
- border: 1px solid #fff;
- border-bottom: 1px solid #e7e7e7;
- width: 99%;
}
+ @media (min-width: 768px){
+ .section-north {
+ border: 1px solid #fff;
+ border-bottom: 1px solid #e7e7e7;
+ }
+ }
+
#page-wrapper {
padding: 0;
min-height: 0;
@@ -132,7 +140,7 @@ li {
/*Disabled scroll*/
/*border-right: 1px solid #e7e7e7;*/
/*overflow-y: scroll;*/
- height: 100%;
+ /* height: 100%; */
}
.col-left {
@@ -143,10 +151,12 @@ li {
.section-main,
.section-detail {
+ /*
padding-top: 15px;
padding-bottom: 15px;
padding-left: 15px;
height: 568px;
+ */
}
.section-row {
@@ -202,7 +212,6 @@ a[ui-sref] {
}
.btn-info,
-.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active {
@@ -210,6 +219,11 @@ a[ui-sref] {
border-color: $button-info-background;
color: #fff;
}
+
+ .btn-info:hover,
+ .open > .dropdown-toggle.btn-info {
+ background-color: $button-info-background-hover;
+ }
.btn-success,
.btn-success:hover,
@@ -362,18 +376,34 @@ legend {
margin-top: 20px;
}
-.panel-patient .list-inline {
- margin-bottom: 0;
- margin-top: 2px;
-}
+ .panel-patient .list-inline {
+ margin-bottom: 0;
+ margin-top: 2px;
+ }
+
+ @media (min-width: 992px){
+ .panel-patient .list-inline {
+ text-align: right;
+ }
+ }
+
+ .panel-patient .panel-body label {
+ margin-bottom: 0;
+ }
.panel-patient .list-inline label {
color: #fff;
}
.panel-patient .panel-body {
- padding: 0;
+
}
+
+ @media (min-width: 768px){
+ .panel-patient .panel-body {
+ padding: 0;
+ }
+ }
.panel-patient .table {
margin: 0;
@@ -589,32 +619,249 @@ legend {
.header-icon {
width: auto;
- height: 60px;
+ height: 40px;
cursor: pointer;
content: url($header-logo-url);
+ margin-right: 5px;
+ position: relative;
+ top: -2px;
}
+ @media (min-width: 768px){
+ .header-icon {
+ height: 60px;
+ }
+ }
+
+ /* Mobile Nav */
+
+ .header-nav .navbar-header .navbar-brand {
+ padding: 6px 8px 8px 5px;
+ }
+
+ .header-nav.navbar-default {
+ background-color: #fff;
+ margin-bottom: 0;
+ border-bottom: none;
+ }
+
+ .header-nav.navbar {
+ min-height: 55px;
+ }
+
+ .header-nav .nav-tabs {
+ margin-top: 3px;
+ }
+
+ .header-nav .nav-tabs i {
+ position: relative;
+ }
+
+ .header-nav .nav-tabs .count {
+ position: absolute;
+ top: -5px;
+ right: -9px;
+ font-size: 10px;
+ font-family: arial;
+ background-color: $icon-chevron-color;
+ color: #fff;
+ display: block;
+ padding: 1px 0;
+ width: 12px;
+ text-align: center;
+ border-radius: 50%;
+ font-weight: 600;
+ }
+
+ .header-nav .nav-tabs > li > a,
+ .header-nav .nav-tabs > li.active > a,
+ .header-nav .nav-tabs > li.active > a:hover,
+ .header-nav .nav-tabs > li.active > a:focus,
+ .header-nav .nav-tabs {
+ border: none;
+ }
+
+ .header-nav .nav-tabs > li > a {
+ font-size: 18px;
+ color: $icon-chevron-color;
+ background: inherit;
+ }
+
+ .header-nav .nav-tabs > li > a:hover,
+ .header-nav .nav-tabs > li.active > a {
+ color: $icon-user-color;
+ background: inherit;
+ }
+
+ .header-nav .nav-tabs > li > a:hover .count,
+ .header-nav .nav-tabs > li.active > a .count {
+ background-color: $icon-user-color;
+ }
+
+ .header-nav .pane {
+ background-color: #f7f7f7;
+ border-top: 1px solid #e7e7e7;
+ padding-top: 10px;
+ padding-bottom: 10px;
+ }
+
+ /* User Profile (Mobile) */
+
+ #tab-user .user-type {
+ text-transform: uppercase;
+ display: block;
+ padding: 2px 5px 0px 5px;
+ float: right;
+ font-size: 12px;
+ }
+
+ #tab-user .user-type.superuser {
+ background-color: orange;
+ color: #fff;
+ }
+
+ #tab-user .user-type.clinician {
+ background-color: blue;
+ color: #fff;
+ }
+
+ #tab-user .user-type.patient {
+ background-color: green;
+ color: #fff;
+ }
+
+ #tab-user .options ul {
+ margin-top: 10px;
+ margin-bottom: 5px;
+ }
+
+ #tab-user .options a.btn {
+ background-color: #fff;
+ width: 100%;
+ border-radius: 0;
+ border-color: #e7e7e7;
+ border-style: solid;
+ border-bottom-width: 1px;
+ border-left-width: 1px;
+ border-right-width: 1px;
+ border-top-width: 0;
+ font-weight: 400;
+ }
+
+ #tab-user .options a.btn:hover {
+ background-color: #f7f7f7;
+ }
+
+ #tab-user .options li:first-child a.btn {
+ border-top-width: 1px;
+ }
+
+ #tab-user .options a.btn.signout {
+ border-color: #057BC0;
+ background-color: #057BC0;
+ color: #fff;
+ }
+
+ #tab-user .options a.btn.signout:hover {
+ background-color: #096498;
+ }
+
+ /* Notifications */
+
+ #tab-notifications {
+ padding-top: 5px;
+ padding-bottom: 0;
+ }
+
+ #tab-notifications .notifications-header {
+ border-bottom: 1px solid #e7e7e7;
+ padding: 0 15px 5px 15px;
+ font-size: 14px;
+ font-weight: 600;
+ }
+
+ #tab-notifications .notifications-body {
+ font-size: 12px;
+ background-color: #fff;
+ }
+
+ #tab-notifications .notifications-body li {
+ padding: 10px 15px 10px 15px;
+ border-bottom: 1px solid #e7e7e7;
+ cursor: pointer;
+ }
+
+ #tab-notifications .notifications-body li:hover {
+ background-color: #f7f7f7;
+ }
+
+ #tab-notifications .notifications-body .notification-info {
+ margin-bottom: 5px;
+ }
+
+ #tab-notifications .notifications-body .notification-time {
+ font-size: 11px;
+ color: #999;
+ }
+
+ /* Search */
+
+ #tab-search {
+ position: relative;
+ }
+
+ #tab-search button.btn-info {
+ position: absolute;
+ right: 15px;
+ top: 0;
+ }
+
+ #tab-search .header-search-mobile {
+ padding-right: 65px;
+ }
+
/* Main search bar for home page */
-.search-logo {
- width: 30%;
- display: block;
- margin: 0 auto;
- content: url($search-logo-url);
-}
.main-search {
- position: absolute;
font-size: 20px;
color: #FFF;
- font-family: hero;
- top: 10%;
- left: 28%;
- right: 0;
- bottom: 0;
- height: 100%;
- width: 40%;
+ font-family: 'hero';
+ padding-top: 5%;
}
+ .search-logo {
+ max-width: 180px;
+ width: 20%;
+ display: block;
+ margin: 0 auto 5% auto;
+ content: url("../images/search-ripple-logo.png");
+ }
+
+ .main-search-inner {
+ padding-right: 110px;
+ position: relative;
+ }
+
+ .main-search-inner .btn {
+ position: absolute;
+ right: 0;
+ top: 0;
+ width: 100px;
+ }
+
+ /* Search button in mobile view*/
+ @media (max-width: 768px) {
+
+ .main-search-inner {
+ padding-right: 60px;
+ }
+
+ .main-search-inner .btn {
+ width: 50px;
+ }
+ }
+
+
/* Header - Search Bar */
.searchBarHidden {
visibility: hidden;
@@ -669,11 +916,9 @@ legend {
i.clearAll {
position: absolute;
- padding: 2px 0px;
- margin-top: 7px;
- margin-left: 95%;
- height: 25px;
- color: red
+ color: red;
+ right: 117px;
+ top: 7px;
}
.search-left-inner-addon i.fa.fa-times {
@@ -715,18 +960,32 @@ i.clearAll {
}
.header-search-mobile {
- padding-left: 45px;
- padding-right: 45px;
- padding-bottom: 10px;
- font-family: hero;
+ font-family: 'hero';
}
.header-search {
font-size: 20px;
color: #FFF;
- font-family: hero;
+ font-family: 'hero';
+ padding-top: 12px;
}
+ .header-search-inner {
+ position: relative;
+ }
+
+ .header-search-inner .search-left-inner-addon {
+ margin-right: 110px;
+ }
+
+ .header-search .searchButton {
+ position: absolute;
+ right: 0;
+ top: 0;
+ margin: 0;
+ width: 100px;
+ }
+
.header-left {
padding-left: 40px;
text-align: left;
@@ -736,7 +995,7 @@ i.clearAll {
text-align: center;
padding-right: 60px;
max-height: 45px;
- font-family: hero;
+ font-family: "Hero";
}
.header-right {
@@ -753,6 +1012,23 @@ i.clearAll {
font-family: "Hero";
}
+
+/* Search button in tablet and small desktop view*/
+@media (min-width: 768px) and (max-width: 1199px) {
+
+ .header-search-inner .search-left-inner-addon {
+ margin-right: 60px;
+ }
+
+ .header-search .searchButton {
+ width: 50px;
+ }
+
+ i.clearAll {
+ right: 67px;
+ }
+}
+
.glyphicon-user:before {
color: $icon-user-color;
}
@@ -782,12 +1058,30 @@ i.clearAll {
color: #000000;
margin-left: -5.5%;
margin-right: 0px;
+/*
padding-top: 10px;
padding-bottom: 10px;
+*/
border-top: 1px solid #CCCCCC;
border-bottom: 1px solid #CCCCCC;
}
+ .header-toolbar .inner {
+ padding-top: 5px;
+ padding-bottom: 5px;
+ }
+
+ .header-toolbar .navbar-toggle {
+ margin: 0;
+ position: relative;
+ padding: 11px 10px;
+ }
+
+ .header-toolbar .navbar-toggle .icon-bar {
+ color: #fff;
+ border: 1px solid #fff;
+ }
+
.previous-page-arrow {
float: left;
padding-left: 30px;
@@ -1082,34 +1376,15 @@ svg {
border-radius: 3px;
background-color: #eef8e7;
text-align: center;
+ width: 80px;
+ line-height: 1.2em;
+ float: left;
+ margin-right: 15px;
}
-
-/* User Profile Mobile */
-
-@media (max-width: 767px) {
- .navbar-nav .open .dropdown-menu {
- top: 100%;
- left: 0;
- float: left;
- width: 310px;
- margin: 2px 0 0;
- font-size: 14px;
- text-align: left;
- list-style: none;
- background-color: #fff;
- -webkit-background-clip: padding-box;
- background-clip: padding-box;
- border: 1px solid #ccc;
- border-radius: 4px;
- -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
- box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
- z-index: 9999;
- position: absolute;
- display: block;
- line-height: 0;
+ #tab-user p {
+ margin: 0 0 8px 0;
}
-}
/* Patient List */
@@ -1179,7 +1454,7 @@ table.table {
.table tbody tr td {
vertical-align: middle;
- height: 37px;
+ /* height: 37px; */
}
.table tbody tr td:first-child {
@@ -1851,7 +2126,7 @@ textarea#procedureNotes {
}
.section-detail .btn-info {
- margin-right: 20px;
+ margin-left: 20px;
margin-top: 20px;
}
@@ -1877,19 +2152,26 @@ textarea#procedureNotes {
}
div.transbox {
- background-color: #fafafa;
+ background-color: #fff;
opacity: 0.7;
filter: alpha(opacity=70);
color: #000000;
- margin-right: 5%;
}
div.transbox .innerTransbox {
- padding-right: 20px;
- padding-left: 20px;
+ padding-left: 0;
+ padding-right: 0;
padding-bottom: 15px;
}
+ /* disable transbox padding on mobile to alins when stacked */
+ @media (min-width: 992px) {
+ div.transbox .innerTransbox {
+ padding-right: 20px;
+ padding-left: 20px;
+ }
+ }
+
td.dateTime {
width: 130px;
}
@@ -2034,6 +2316,11 @@ tr.ng-scope.selectedItemLeft {
font-size: 18px;
}
+ .patient-list-full-subheader span.subheader {
+ min-width: 300px;
+ display: inline-block;
+ }
+
.patient-details-tabs {
text-align: right;
}
@@ -2130,7 +2417,7 @@ span.selectedTab {
}
.orderDateTime {
- width: 23%;
+// width: 23%;
}
.reportTypeSet {
@@ -2293,3 +2580,69 @@ div#age-chart div.morris-hover.morris-default-style {
text-decoration: overline;
cursor: pointer !important;
}
+
+
+// Responsive Tables - http://codepen.io/geoffyuen/pen/FCBEg
+
+.rwd-table {
+ min-width: 300px; // adjust to your needs
+
+ tr {
+ border-top: 1px solid #ddd;
+ border-bottom: 1px solid #ddd;
+ }
+
+ th {
+ display: none; // for accessibility, use a visually hidden method here instead! Thanks, reddit!
+ }
+
+ td {
+ display: block;
+
+ &:first-child {
+ padding-top: .5em;
+ padding-left: .5em;
+ }
+ &:last-child {
+ border-bottom: 1px solid #999;
+ }
+
+ &:before {
+ content: attr(data-th)": "; // who knew you could do this? The internet, that's who.
+ font-weight: bold;
+
+ // optional stuff to make it look nicer
+ width: 8em; // magic number :( adjust according to your own content
+ display: inline-block;
+ padding-right: 10px;
+ // end options
+
+ @media (min-width: $breakpoint-alpha) {
+ display: none;
+ }
+ }
+ }
+
+ td.dateTime {
+ width: auto;
+ }
+
+ th, td {
+ text-align: left;
+
+ @media (min-width: $breakpoint-alpha) {
+ display: table-cell;
+ padding: .25em .5em;
+
+ &:first-child {
+ }
+
+ &:last-child {
+ border-bottom: 1px solid #ddd;
+ }
+ }
+
+ }
+
+
+}
\ No newline at end of file
diff --git a/webapp/app/styles/themes/ripple/theme.scss b/webapp/app/styles/themes/ripple/theme.scss
index 1f2202a0..5e42288a 100644
--- a/webapp/app/styles/themes/ripple/theme.scss
+++ b/webapp/app/styles/themes/ripple/theme.scss
@@ -14,6 +14,7 @@ $icon-main-nav-color: #7cbe31;
$icon-patient-landing-color: #C5E29F;
$button-info-background: #007a41;
+$button-info-background-hover: #006938;
$button-success-background: #007a41;
$button-main-nav-background-hover: #f4f8ec;
@@ -25,3 +26,5 @@ $panel-background: #007a41;
$link-color-hover: #7cbe31;
$rounded-connected-background: #C5E29F;
+
+$breakpoint-alpha: 480px; // Width where tables are stacked.
\ No newline at end of file
diff --git a/webapp/app/styles/themes/stft/theme.scss b/webapp/app/styles/themes/stft/theme.scss
index d7d8d017..132a14d5 100644
--- a/webapp/app/styles/themes/stft/theme.scss
+++ b/webapp/app/styles/themes/stft/theme.scss
@@ -14,6 +14,7 @@ $icon-main-nav-color: #7cbe31;
$icon-patient-landing-color: #C5E29F;
$button-info-background: #007a41;
+$button-info-background-hover: #006938;
$button-success-background: #007a41;
$button-main-nav-background-hover: #f4f8ec;
@@ -25,3 +26,5 @@ $panel-background: #007a41;
$link-color-hover: #7cbe31;
$rounded-connected-background: #C5E29F;
+
+$breakpoint-alpha: 480px; // Width where tables are stacked.
\ No newline at end of file
diff --git a/webapp/app/views/allergies/allergies-list.html b/webapp/app/views/allergies/allergies-list.html
index 70004a22..73423521 100644
--- a/webapp/app/views/allergies/allergies-list.html
+++ b/webapp/app/views/allergies/allergies-list.html
@@ -5,7 +5,7 @@
+
+
+
-
+
+
+
+
+
+
+
Allergies
| Cause | @@ -16,9 +16,9 @@||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ allergy.cause }} | -{{ allergy.reaction }} | -{{ allergy.source }} | +{{ allergy.cause }} | +{{ allergy.reaction }} | +{{ allergy.source }} | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Date of App. | @@ -17,10 +17,10 @@|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ appointment.dateOfAppointment}} | -{{ appointment.timeOfAppointment }} | -{{ appointment.serviceTeam}} | -{{ appointment.source }} | +{{ appointment.dateOfAppointment}} | +{{ appointment.timeOfAppointment }} | +{{ appointment.serviceTeam}} | +{{ appointment.source }} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Date of Request | @@ -16,10 +16,10 @@||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{mdt.dateOfRequest}} | -{{mdt.serviceTeam}} | -{{mdt.dateOfMeeting}} | -{{mdt.source}} | +{{mdt.dateOfRequest}} | +{{mdt.serviceTeam}} | +{{mdt.dateOfMeeting}} | +{{mdt.source}} | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| No MDTs | diff --git a/webapp/app/views/care-plans/eolcareplans-list.html b/webapp/app/views/care-plans/eolcareplans-list.html index 346d3058..535ac0c1 100644 --- a/webapp/app/views/care-plans/eolcareplans-list.html +++ b/webapp/app/views/care-plans/eolcareplans-list.html @@ -6,7 +6,7 @@||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Name | @@ -17,10 +17,10 @@|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ eolcareplan.name }} | -{{ eolcareplan.type }} | -{{ eolcareplan.date | date:'y-MM-dd'}} | -{{ eolcareplan.source }} | +{{ eolcareplan.name }} | +{{ eolcareplan.type }} | +{{ eolcareplan.date | date:'y-MM-dd'}} | +{{ eolcareplan.source }} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Name | @@ -17,10 +17,10 @@||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ contact.name }} | -{{ contact.relationship }} | -- | {{ contact.source }} | +{{ contact.name }} | +{{ contact.relationship }} | ++ | {{ contact.source }} | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Problems / Diagnoses | @@ -16,9 +16,9 @@|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ diagnosis.problem }} | -{{ diagnosis.dateOfOnset}} | -{{diagnosis.source}} | +{{ diagnosis.problem }} | +{{ diagnosis.dateOfOnset}} | +{{diagnosis.source}} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Image Description | @@ -16,9 +16,9 @@||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ image.studyDescription }} | -{{ image.dateRecorded }} | -{{ image.source }} | +{{ image.studyDescription }} | +{{ image.dateRecorded }} | +{{ image.source }} | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Name | @@ -12,9 +12,9 @@|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ medication.name }} | -{{ medication.doseAmount }} | -{{ medication.source}} | +{{ medication.name }} | +{{ medication.doseAmount }} | +{{ medication.source}} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Order Name | @@ -16,9 +16,9 @@|||||
|---|---|---|---|---|---|
| {{order.name }} | -{{order.orderDate}} | -{{ order.source }} | +{{order.name }} | +{{order.orderDate}} | +{{ order.source }} |
+
diff --git a/webapp/app/views/patients/patients-list.html b/webapp/app/views/patients/patients-list.html
index 30046393..53c0121a 100644
--- a/webapp/app/views/patients/patients-list.html
+++ b/webapp/app/views/patients/patients-list.html
@@ -59,7 +59,7 @@
-
+
+ {{ patient.address }} +
+
+ + {{ patient.address }} +
+
+ {{ patient.telephone }} +
+
+ + {{ patient.telephone }} +
+
+ {{ patient.gpDetails }} +
+
+ + {{ patient.gpDetails }} +
+
+ {{ patient.pasNumber }} +
+ + {{ patient.pasNumber }} +
| Name | @@ -71,11 +71,11 @@|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ patient.name }} | -{{ patient.address }} | -{{ patient.dateOfBirth | date:'dd-MMM-yyyy' }} | -{{ patient.gender }} | -{{ patient.nhsNumber | formatNHSNumber }} | +{{ patient.name }} | +{{ patient.address }} | +{{ patient.dateOfBirth | date:'dd-MMM-yyyy' }} | +{{ patient.gender }} | +{{ patient.nhsNumber | formatNHSNumber }} | ||||||||||||||||||||||||||||||||||||||||||||||||||
| Name | @@ -52,9 +52,9 @@||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ patient.fullname() }} | -{{ patient.address }} | -+ | {{ patient.fullname() }} | +{{ patient.address }} | +||||||||||||||||||||||||||||||||||||||||||||||||
| Procedure Name | @@ -17,10 +17,10 @@|||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{procedure.name}} | -{{procedure.date}} | -{{procedure.time}} | -{{procedure.source}} | +{{procedure.name}} | +{{procedure.date}} | +{{procedure.time}} | +{{procedure.source}} | ||||||||||||||||||||||||||||||||||||
| No procedures | diff --git a/webapp/app/views/referrals/referrals-list.html b/webapp/app/views/referrals/referrals-list.html index 07edfc67..c5553946 100644 --- a/webapp/app/views/referrals/referrals-list.html +++ b/webapp/app/views/referrals/referrals-list.html @@ -5,7 +5,7 @@|||||||||||||||||||||||||||||||||||||||||||
| Date of Referral | @@ -17,10 +17,10 @@||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ referral.dateOfReferral}} | -{{ referral.referralFrom }} | -{{ referral.referralTo }} | -{{ referral.source }} | +{{ referral.dateOfReferral}} | +{{ referral.referralFrom }} | +{{ referral.referralTo }} | +{{ referral.source }} | |||||||||||||||||||||||
| Test Name | @@ -17,10 +17,10 @@|||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ result.testName }} | -{{ result.sampleTaken}} | -{{ result.dateCreated}} | -{{ result.source }} | +{{ result.testName }} | +{{ result.sampleTaken}} | +{{ result.dateCreated}} | +{{ result.source }} | ||||||||||||||
| Name | @@ -42,16 +49,15 @@|||||||||
|---|---|---|---|---|---|---|---|---|---|
| {{ patient.name }} | -{{ patient.address }} | -{{ patient.dateOfBirth | date:'dd-MMM-yyyy' }} | -{{ patient.gender }} | -{{ patient.nhsNumber | formatNHSNumber }} | - +{{ patient.name }} | +{{ patient.address }} | +{{ patient.dateOfBirth | date:'dd-MMM-yyyy' }} | +{{ patient.gender }} | +{{ patient.nhsNumber | formatNHSNumber }} |
| Transfer | @@ -19,11 +19,11 @@|||||||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer #{{($index + 1)}} | -{{transfer.siteFrom}} | -{{transfer.siteTo}} | -{{transfer.dateOfTransfer}} | -local | +Transfer #{{($index + 1)}} | +{{transfer.siteFrom}} | +{{transfer.siteTo}} | +{{transfer.dateOfTransfer}} | +local |