renalware-core 2.0.164 → 2.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/app/assets/javascripts/renalware/rollup_compiled.css +0 -5
- data/app/assets/javascripts/renalware/rollup_compiled.js +32 -0
- data/app/assets/stylesheets/renalware/lib/_foundation_and_overrides.scss +1 -1
- data/app/assets/stylesheets/renalware/modules/_letters.scss +2 -4
- data/app/assets/stylesheets/renalware/partials/_layout.scss +5 -1
- data/app/assets/stylesheets/renalware/partials/_patient_search.scss +1 -0
- data/app/assets/stylesheets/renalware/partials/_tables.scss +15 -0
- data/app/components/renalware/events/event_list_component.html.slim +1 -1
- data/app/components/renalware/letters/letters_in_progress_component.en.yml +7 -0
- data/app/components/renalware/letters/letters_in_progress_component.html.slim +2 -2
- data/app/components/renalware/letters/letters_in_progress_component.pt.yml +7 -0
- data/app/components/renalware/letters/unread_electronic_ccs_component.en.yml +7 -0
- data/app/components/renalware/letters/unread_electronic_ccs_component.html.slim +2 -2
- data/app/components/renalware/letters/unread_electronic_ccs_component.pt.yml +7 -0
- data/app/components/renalware/messaging/unread_messages_component.en.yml +7 -0
- data/app/components/renalware/messaging/unread_messages_component.html.slim +2 -2
- data/app/components/renalware/messaging/unread_messages_component.pt.yml +7 -0
- data/app/components/renalware/patients/bookmarks_component.en.yml +7 -0
- data/app/components/renalware/patients/bookmarks_component.html.slim +3 -3
- data/app/components/renalware/patients/bookmarks_component.pt.yml +7 -0
- data/app/components/renalware/patients/messages_component.en.yml +5 -0
- data/app/components/renalware/patients/messages_component.html.slim +5 -5
- data/app/components/renalware/patients/messages_component.pt.yml +5 -0
- data/app/components/renalware/patients/messages_component.rb +3 -4
- data/app/components/renalware/pd/adequacy_results_component.html.slim +2 -2
- data/app/components/renalware/pd/pet_results_component.html.slim +2 -2
- data/app/components/renalware/system/admin_menu_component.html.slim +27 -14
- data/app/components/renalware/system/users_awaiting_approval_component.en.yml +7 -0
- data/app/components/renalware/system/users_awaiting_approval_component.html.slim +2 -2
- data/app/components/renalware/system/users_awaiting_approval_component.pt.yml +7 -0
- data/app/components/renalware/system/users_awaiting_approval_component.rb +0 -8
- data/app/components/renalware/users/last_signin_component.en.yml +6 -0
- data/app/components/renalware/users/last_signin_component.html.slim +1 -1
- data/app/components/renalware/users/last_signin_component.pt.yml +6 -0
- data/app/controllers/renalware/accesses/assessments_controller.rb +4 -4
- data/app/controllers/renalware/accesses/procedures_controller.rb +2 -2
- data/app/controllers/renalware/accesses/profiles_controller.rb +4 -4
- data/app/controllers/renalware/admin/users_controller.rb +2 -2
- data/app/controllers/renalware/base_controller.rb +2 -2
- data/app/controllers/renalware/clinical/body_compositions_controller.rb +2 -2
- data/app/controllers/renalware/clinical/dry_weights_controller.rb +2 -2
- data/app/controllers/renalware/clinical/profiles_controller.rb +3 -2
- data/app/controllers/renalware/clinics/appointments_controller.rb +1 -1
- data/app/controllers/renalware/clinics/clinic_visits_controller.rb +3 -3
- data/app/controllers/renalware/concerns/devise_controller_methods.rb +1 -0
- data/app/controllers/renalware/deaths_controller.rb +2 -2
- data/app/controllers/renalware/directory/people_controller.rb +4 -4
- data/app/controllers/renalware/drugs/drugs_controller.rb +5 -5
- data/app/controllers/renalware/events/events_controller.rb +3 -3
- data/app/controllers/renalware/events/types_controller.rb +1 -1
- data/app/controllers/renalware/hd/cannulation_types_controller.rb +5 -5
- data/app/controllers/renalware/hd/current_profile_controller.rb +19 -3
- data/app/controllers/renalware/hd/preference_sets_controller.rb +2 -2
- data/app/controllers/renalware/hd/sessions_controller.rb +3 -3
- data/app/controllers/renalware/letters/batches_controller.rb +1 -0
- data/app/controllers/renalware/letters/letters_controller.rb +3 -3
- data/app/controllers/renalware/letters/lists_controller.rb +3 -0
- data/app/controllers/renalware/low_clearance/profiles_controller.rb +1 -1
- data/app/controllers/renalware/messaging/internal/messages_controller.rb +3 -3
- data/app/controllers/renalware/modalities/descriptions_controller.rb +5 -5
- data/app/controllers/renalware/modalities/modalities_controller.rb +2 -2
- data/app/controllers/renalware/pathology/observation_descriptions_controller.rb +1 -1
- data/app/controllers/renalware/pathology/patient_rules_controller.rb +5 -5
- data/app/controllers/renalware/patients/patients_controller.rb +1 -1
- data/app/controllers/renalware/patients/primary_care_physicians_controller.rb +5 -5
- data/app/controllers/renalware/pd/bag_types_controller.rb +5 -5
- data/app/controllers/renalware/pd/exit_site_infections_controller.rb +4 -4
- data/app/controllers/renalware/pd/peritonitis_episodes_controller.rb +2 -2
- data/app/controllers/renalware/pd/regimes_controller.rb +2 -2
- data/app/controllers/renalware/renal/profiles_controller.rb +1 -1
- data/app/controllers/renalware/snippets/snippets_controller.rb +2 -2
- data/app/controllers/renalware/system/downloads_controller.rb +1 -1
- data/app/controllers/renalware/transplants/donations_controller.rb +4 -4
- data/app/controllers/renalware/transplants/donor_operations_controller.rb +4 -4
- data/app/controllers/renalware/transplants/donor_stages_controller.rb +1 -1
- data/app/controllers/renalware/transplants/donor_workups_controller.rb +2 -2
- data/app/controllers/renalware/transplants/recipient_operations_controller.rb +4 -4
- data/app/controllers/renalware/transplants/recipient_workups_controller.rb +2 -2
- data/app/controllers/renalware/transplants/registration_statuses_controller.rb +5 -5
- data/app/controllers/renalware/transplants/registrations_controller.rb +2 -2
- data/app/controllers/renalware/virology/vaccination_types_controller.rb +69 -0
- data/app/helpers/renalware/form_helper.rb +7 -2
- data/app/javascript/renalware/controllers/collapsible_controller.js +36 -0
- data/app/javascript/renalware/index.js +2 -0
- data/app/models/renalware/events/category.rb +21 -0
- data/app/models/renalware/events/type.rb +2 -0
- data/app/models/renalware/hd/mdm_patients_form.rb +1 -1
- data/app/models/renalware/hd/patient_listener.rb +1 -1
- data/app/models/renalware/hd/profile.rb +4 -1
- data/app/models/renalware/letters/batch.rb +1 -0
- data/app/models/renalware/letters/letter.rb +10 -1
- data/app/models/renalware/letters/lists/form.rb +6 -1
- data/app/models/renalware/letters/mailshots/mailshot.rb +0 -1
- data/app/models/renalware/letters/printing/batch_compile_pdfs.rb +15 -4
- data/app/models/renalware/letters/remembered_letter_preferences.rb +1 -1
- data/app/models/renalware/patient.rb +1 -0
- data/app/models/renalware/ukrdc/outgoing/rendering/document.rb +1 -1
- data/app/models/renalware/ukrdc/outgoing/rendering/patient.rb +2 -2
- data/app/models/renalware/ukrdc/outgoing/rendering/primary_language.rb +2 -2
- data/app/models/renalware/virology/vaccination_type.rb +25 -3
- data/app/policies/renalware/events/advanced_care_plan_policy.rb +1 -1
- data/app/policies/renalware/events/clinical_frailty_score_policy.rb +1 -1
- data/app/policies/renalware/events/event_policy.rb +4 -0
- data/app/policies/renalware/events/investigation_policy.rb +5 -1
- data/app/policies/renalware/virology/vaccination_policy.rb +6 -1
- data/app/presenters/renalware/events/events_presenter.rb +10 -5
- data/app/presenters/renalware/letters/practice_email_meta_data.rb +4 -4
- data/app/presenters/renalware/virology/dashboard_presenter.rb +1 -1
- data/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
- data/app/views/devise/mailer/email_changed.html.erb +7 -0
- data/app/views/devise/mailer/password_change.html.erb +3 -0
- data/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
- data/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
- data/app/views/devise/passwords/edit.html.erb +27 -0
- data/app/views/{renalware/devise/passwords/edit.html.erb → devise/passwords/edit.html.erb.old} +0 -0
- data/app/views/{renalware/devise → devise}/passwords/new.html.erb +2 -2
- data/app/views/devise/passwords/new.html.erb.new +18 -0
- data/app/views/devise/registrations/edit.html.erb.pt +35 -0
- data/app/views/{renalware/devise → devise}/registrations/edit.html.slim +14 -7
- data/app/views/devise/registrations/new.html.erb.pt +25 -0
- data/app/views/{renalware/devise → devise}/registrations/new.html.slim +3 -3
- data/app/views/{renalware/devise → devise}/sessions/_signup_help.html.slim +0 -0
- data/app/views/{renalware/devise → devise}/sessions/_warning.html.slim +0 -0
- data/app/views/{renalware/devise → devise}/sessions/new.html.slim +2 -2
- data/app/views/devise/shared/_links.html.erb +26 -0
- data/app/views/devise/unlocks/new.html.erb +19 -0
- data/app/views/renalware/accesses/assessments/_form.html.slim +2 -2
- data/app/views/renalware/accesses/assessments/_list.html.slim +2 -2
- data/app/views/renalware/accesses/assessments/show.html.slim +1 -1
- data/app/views/renalware/accesses/dashboards/_page_actions.html.slim +1 -1
- data/app/views/renalware/accesses/plans/_list.html.slim +1 -1
- data/app/views/renalware/accesses/plans/_summary.html.slim +2 -2
- data/app/views/renalware/accesses/plans/new.html.slim +2 -2
- data/app/views/renalware/accesses/procedures/_form.html.slim +2 -2
- data/app/views/renalware/accesses/procedures/_list.html.slim +2 -2
- data/app/views/renalware/accesses/procedures/show.html.slim +1 -1
- data/app/views/renalware/accesses/profiles/_current_profile.html.slim +2 -2
- data/app/views/renalware/accesses/profiles/_form.html.slim +2 -2
- data/app/views/renalware/accesses/profiles/_list.html.slim +2 -2
- data/app/views/renalware/accesses/profiles/show.html.slim +1 -1
- data/app/views/renalware/admin/feeds/files/index.html.slim +1 -1
- data/app/views/renalware/admin/users/_filters.html.slim +3 -3
- data/app/views/renalware/admin/users/_tabs.html.slim +1 -1
- data/app/views/renalware/admin/users/edit.html.slim +1 -1
- data/app/views/renalware/admin/users/index.html.slim +1 -1
- data/app/views/renalware/admissions/_summary_part.html.slim +2 -2
- data/app/views/renalware/admissions/admissions/_filters.html.slim +2 -2
- data/app/views/renalware/admissions/admissions/_form.html.slim +1 -1
- data/app/views/renalware/admissions/admissions/_table.html.slim +3 -3
- data/app/views/renalware/admissions/admissions/index.html.slim +1 -1
- data/app/views/renalware/admissions/consults/_filters.html.slim +2 -2
- data/app/views/renalware/admissions/consults/_form.html.slim +1 -1
- data/app/views/renalware/admissions/consults/_summary_part.html.slim +2 -2
- data/app/views/renalware/admissions/consults/index.html.slim +1 -1
- data/app/views/renalware/admissions/patient_admissions/index.html.slim +1 -1
- data/app/views/renalware/admissions/requests/_form.html.slim +1 -1
- data/app/views/renalware/admissions/requests/_request.html.slim +1 -1
- data/app/views/renalware/clinical/allergies/_list.html.slim +3 -3
- data/app/views/renalware/clinical/body_compositions/_form.html.slim +1 -1
- data/app/views/renalware/clinical/body_compositions/_list.html.slim +2 -2
- data/app/views/renalware/clinical/body_compositions/_table.html.slim +3 -3
- data/app/views/renalware/clinical/body_compositions/show.html.slim +1 -1
- data/app/views/renalware/clinical/dry_weights/_form.html.slim +1 -1
- data/app/views/renalware/clinical/dry_weights/_list.html.slim +2 -2
- data/app/views/renalware/clinical/dry_weights/_table.html.slim +3 -3
- data/app/views/renalware/clinical/profiles/edit.html.slim +5 -1
- data/app/views/renalware/clinical/profiles/show.html.slim +3 -2
- data/app/views/renalware/clinics/appointments/index.html.slim +4 -5
- data/app/views/renalware/clinics/clinic_visits/_table_row.html.slim +2 -2
- data/app/views/renalware/clinics/clinic_visits/edit.html.slim +1 -1
- data/app/views/renalware/clinics/clinic_visits/index.html.slim +1 -1
- data/app/views/renalware/clinics/clinic_visits/new.html.slim +2 -2
- data/app/views/renalware/clinics/visits/_filters.html.slim +2 -2
- data/app/views/renalware/clinics/visits/_table.html.slim +1 -1
- data/app/views/renalware/dashboard/bookmarks/_bookmark.html.slim +1 -1
- data/app/views/renalware/dashboard/bookmarks/_table.html.slim +10 -10
- data/app/views/renalware/dashboard/dashboards/show.html.slim +1 -1
- data/app/views/renalware/dashboard/letters/_letter.html.slim +3 -8
- data/app/views/renalware/dashboard/letters/_table.html.slim +5 -5
- data/app/views/renalware/deaths/edit.html.slim +1 -1
- data/app/views/renalware/deaths/index.html.slim +3 -3
- data/app/views/renalware/directory/people/_filters.html.slim +2 -2
- data/app/views/renalware/directory/people/_form.html.slim +1 -1
- data/app/views/renalware/directory/people/_person.html.slim +3 -4
- data/app/views/renalware/directory/people/show.html.slim +1 -1
- data/app/views/renalware/drugs/drugs/_filters.html.slim +3 -3
- data/app/views/renalware/drugs/drugs/_form.html.slim +1 -1
- data/app/views/renalware/drugs/drugs/edit.html.slim +1 -1
- data/app/views/renalware/drugs/drugs/index.html.slim +3 -3
- data/app/views/renalware/drugs/drugs/new.html.slim +1 -1
- data/app/views/renalware/events/events/_event.html.slim +16 -3
- data/app/views/renalware/events/events/_filters.html.slim +10 -4
- data/app/views/renalware/events/events/_form.html.slim +2 -2
- data/app/views/renalware/events/events/_summary_part.html.slim +3 -5
- data/app/views/renalware/events/events/_table.html.slim +6 -7
- data/app/views/renalware/events/events/edit.html.slim +10 -0
- data/app/views/renalware/events/events/index.html.slim +1 -1
- data/app/views/renalware/events/events/new.html.slim +4 -4
- data/app/views/renalware/events/events/simple/_event.html.slim +1 -1
- data/app/views/renalware/events/events/simple/_table.html.slim +3 -3
- data/app/views/renalware/events/investigations/_list.html.slim +1 -1
- data/app/views/renalware/events/investigations/edit.html.slim +5 -11
- data/app/views/renalware/events/lists/_filters.html.slim +2 -2
- data/app/views/renalware/events/swabs/_list.html.slim +7 -7
- data/app/views/renalware/events/swabs/edit.html.slim +5 -11
- data/app/views/renalware/events/swabs/new.html.slim +5 -11
- data/app/views/renalware/events/types/_form.html.slim +2 -1
- data/app/views/renalware/events/types/_table.html.slim +2 -2
- data/app/views/renalware/events/types/edit.html.slim +1 -1
- data/app/views/renalware/events/types/index.html.slim +1 -1
- data/app/views/renalware/feeds/hl7_test_messages/new.slim +1 -1
- data/app/views/renalware/hd/accesses/_summary.html.slim +1 -1
- data/app/views/renalware/hd/cannulation_types/_form.html.slim +1 -1
- data/app/views/renalware/hd/cannulation_types/index.html.slim +3 -3
- data/app/views/renalware/hd/current_profile/_form.html.slim +7 -6
- data/app/views/renalware/hd/current_profile/_show.html.slim +1 -2
- data/app/views/renalware/hd/current_profile/_summary.html.slim +3 -3
- data/app/views/renalware/hd/current_profile/show.html.slim +1 -1
- data/app/views/renalware/hd/dashboards/_page_actions.html.slim +1 -1
- data/app/views/renalware/hd/dialysates/_form.html.slim +1 -1
- data/app/views/renalware/hd/dialysates/index.html.slim +3 -3
- data/app/views/renalware/hd/dialysers/_form.html.slim +1 -1
- data/app/views/renalware/hd/dialysers/index.html.slim +4 -5
- data/app/views/renalware/hd/historical_profiles/_summary.html.slim +1 -1
- data/app/views/renalware/hd/historical_profiles/_table.html.slim +1 -1
- data/app/views/renalware/hd/mdm/_sessions.html.slim +1 -1
- data/app/views/renalware/hd/mdm_patients/_filters.html.slim +2 -2
- data/app/views/renalware/hd/mdm_patients/_table.html.slim +23 -23
- data/app/views/renalware/hd/ongoing_sessions/_filters.html.slim +2 -2
- data/app/views/renalware/hd/ongoing_sessions/_session.html.slim +1 -2
- data/app/views/renalware/hd/preference_sets/_form.html.slim +1 -1
- data/app/views/renalware/hd/preference_sets/_summary.html.slim +1 -1
- data/app/views/renalware/hd/prescription_administrations/_form.html.slim +2 -2
- data/app/views/renalware/hd/protocols/_profile.html.slim +1 -1
- data/app/views/renalware/hd/scheduling/diaries/_page_actions.html.slim +1 -1
- data/app/views/renalware/hd/scheduling/diaries/_weekly_diary.html.slim +1 -1
- data/app/views/renalware/hd/scheduling/diary_slots/_form.html.slim +1 -1
- data/app/views/renalware/hd/scheduling/diary_slots/_slot.html.slim +1 -1
- data/app/views/renalware/hd/scheduling/diary_slots/_tab.html.slim +1 -1
- data/app/views/renalware/hd/session_forms/batches/_create.html.slim +1 -1
- data/app/views/renalware/hd/sessions/_form_actions.html.slim +2 -2
- data/app/views/renalware/hd/sessions/_index_tabs.html.slim +1 -1
- data/app/views/renalware/hd/sessions/_list.html.slim +2 -2
- data/app/views/renalware/hd/sessions/_session_nav.html.slim +2 -2
- data/app/views/renalware/hd/sessions/_thead.html.slim +3 -3
- data/app/views/renalware/hd/sessions/dna/_form.html.slim +2 -2
- data/app/views/renalware/hd/sessions/edit.html.slim +1 -1
- data/app/views/renalware/hd/sessions/new.html.slim +1 -1
- data/app/views/renalware/hd/sessions/show.html.slim +1 -1
- data/app/views/renalware/hd/stations/_form.html.slim +2 -2
- data/app/views/renalware/hd/stations/_station.html.slim +1 -1
- data/app/views/renalware/hd/stations/index.html.slim +1 -1
- data/app/views/renalware/hd/transmission_logs/index.html.slim +1 -1
- data/app/views/renalware/hd/unmet_preferences/_filters.html.slim +2 -2
- data/app/views/renalware/hd/unmet_preferences/_table.html.slim +1 -1
- data/app/views/renalware/hd/witnesses/_form.html.slim +1 -1
- data/app/views/renalware/hospitals/units/_form.html.slim +1 -1
- data/app/views/renalware/hospitals/units/index.html.slim +4 -5
- data/app/views/renalware/hospitals/wards/index.html.slim +3 -3
- data/app/views/renalware/letters/_summary_part.html.slim +3 -5
- data/app/views/renalware/letters/batches/_create.html.slim +1 -1
- data/app/views/renalware/letters/completed_batches/new.html.slim +0 -9
- data/app/views/renalware/letters/completed_letters/new.html.slim +1 -1
- data/app/views/renalware/letters/contacts/_contact.html.slim +1 -1
- data/app/views/renalware/letters/contacts/_edit.html.slim +1 -1
- data/app/views/renalware/letters/contacts/index.html.slim +1 -1
- data/app/views/renalware/letters/electronic_receipts/_table.html.slim +9 -9
- data/app/views/renalware/letters/electronic_receipts/sent.html.slim +6 -6
- data/app/views/renalware/letters/formatted_letters/_letter.html.slim +1 -1
- data/app/views/renalware/letters/letters/_actions.html.slim +1 -1
- data/app/views/renalware/letters/letters/_create_letter_button_dropdown.html.slim +1 -1
- data/app/views/renalware/letters/letters/_form.html.slim +2 -3
- data/app/views/renalware/letters/letters/_letter.html.slim +9 -7
- data/app/views/renalware/letters/letters/_preview.html.slim +1 -1
- data/app/views/renalware/letters/letters/_problems_prescriptions.html.slim +1 -1
- data/app/views/renalware/letters/letters/_table.html.slim +8 -6
- data/app/views/renalware/letters/letters/_toggled_body.html.slim +15 -0
- data/app/views/renalware/letters/letters/edit.html.slim +1 -1
- data/app/views/renalware/letters/lists/_letter.html.slim +57 -52
- data/app/views/renalware/letters/lists/_table.html.slim +7 -6
- data/app/views/renalware/letters/lists/show.html.slim +10 -4
- data/app/views/renalware/letters/mailshots/mailshots/index.html.slim +1 -1
- data/app/views/renalware/low_clearance/dashboards/_page_actions.html.slim +1 -1
- data/app/views/renalware/low_clearance/mdm/_low_clearance_profile.html.slim +1 -1
- data/app/views/renalware/low_clearance/profiles/_summary.html.slim +1 -81
- data/app/views/renalware/low_clearance/profiles/edit.html.slim +3 -9
- data/app/views/renalware/mdm/_clinic_visits.html.slim +2 -2
- data/app/views/renalware/mdm/_events.html.slim +1 -1
- data/app/views/renalware/mdm/_letters.html.slim +1 -1
- data/app/views/renalware/mdm/_pathology.html.slim +1 -1
- data/app/views/renalware/mdm/_prescription_buttons.html.slim +2 -2
- data/app/views/renalware/mdm/_problems.html.slim +2 -2
- data/app/views/renalware/mdm_patients/_table.html.slim +6 -6
- data/app/views/renalware/medications/_summary_part.html.slim +2 -3
- data/app/views/renalware/medications/drug_types/prescriptions/_filters.html.slim +1 -3
- data/app/views/renalware/medications/drug_types/prescriptions/_table.html.slim +1 -1
- data/app/views/renalware/medications/home_delivery/events/_edit.html.slim +1 -1
- data/app/views/renalware/medications/prescriptions/_filter_form.html.slim +2 -2
- data/app/views/renalware/medications/prescriptions/_form.html.slim +2 -2
- data/app/views/renalware/medications/prescriptions/_options.html.slim +2 -2
- data/app/views/renalware/medications/prescriptions/index.html.slim +1 -1
- data/app/views/renalware/medications/terminations/_form.html.slim +1 -1
- data/app/views/renalware/messaging/internal/receipts/_receipt.html.slim +1 -1
- data/app/views/renalware/messaging/internal/receipts/_sent_receipt.html.slim +1 -1
- data/app/views/renalware/messaging/internal/receipts/_sent_table.html.slim +7 -7
- data/app/views/renalware/messaging/internal/receipts/_table.html.slim +8 -8
- data/app/views/renalware/messaging/shared/_key.html.slim +1 -2
- data/app/views/renalware/modalities/descriptions/_form.html.slim +1 -1
- data/app/views/renalware/modalities/descriptions/index.html.slim +3 -3
- data/app/views/renalware/modalities/modalities/index.html.slim +1 -1
- data/app/views/renalware/modalities/modalities/new.html.slim +2 -2
- data/app/views/renalware/navigation/_branding.html.slim +1 -2
- data/app/views/renalware/navigation/_directory.html.slim +1 -1
- data/app/views/renalware/navigation/_help_items.html.slim +1 -1
- data/app/views/renalware/navigation/_patient_search.html.slim +1 -1
- data/app/views/renalware/navigation/_patients_admin.html.slim +1 -1
- data/app/views/renalware/navigation/_sign_out.html.slim +1 -1
- data/app/views/renalware/navigation/_user.html.slim +1 -1
- data/app/views/renalware/pathology/code_groups/edit.html.slim +2 -2
- data/app/views/renalware/pathology/code_groups/index.html.slim +2 -2
- data/app/views/renalware/pathology/code_groups/show.html.slim +1 -1
- data/app/views/renalware/pathology/observation_descriptions/_filters.html.slim +2 -2
- data/app/views/renalware/pathology/observation_descriptions/edit.html.slim +1 -1
- data/app/views/renalware/pathology/observation_requests/_filters.html.slim +2 -2
- data/app/views/renalware/pathology/patient_rules/_form.html.slim +1 -1
- data/app/views/renalware/pathology/requests/requests/index.html.slim +3 -3
- data/app/views/renalware/pathology/required_observations/index.html.slim +4 -4
- data/app/views/renalware/patients/_header.html.slim +4 -4
- data/app/views/renalware/patients/_index_header.html.slim +1 -1
- data/app/views/renalware/patients/_search_form.html.slim +1 -1
- data/app/views/renalware/patients/_summary_part.html.slim +3 -3
- data/app/views/renalware/patients/bookmarks/_table.html.slim +10 -10
- data/app/views/renalware/patients/clinical_summaries/show.html.slim +1 -1
- data/app/views/renalware/patients/mdms/_filters.html.slim +2 -2
- data/app/views/renalware/patients/patients/index.html.slim +1 -1
- data/app/views/renalware/patients/patients/show.html.slim +2 -2
- data/app/views/renalware/patients/patients/show/_primary_care_physician.html.slim +2 -2
- data/app/views/renalware/patients/primary_care_physician/_form.html.slim +2 -2
- data/app/views/renalware/patients/primary_care_physicians/_form.html.slim +1 -1
- data/app/views/renalware/patients/primary_care_physicians/_primary_care_physician.html.slim +2 -2
- data/app/views/renalware/patients/primary_care_physicians/index.html.slim +1 -1
- data/app/views/renalware/patients/worryboard/_filters.html.slim +2 -2
- data/app/views/renalware/patients/worryboard/_table.html.slim +2 -2
- data/app/views/renalware/pd/_exit_site_infections.html.slim +2 -2
- data/app/views/renalware/pd/_peritonitis_episodes.html.slim +2 -2
- data/app/views/renalware/pd/_pet_adequacies.html.slim +3 -3
- data/app/views/renalware/pd/_regimes.html.slim +2 -2
- data/app/views/renalware/pd/adequacy_completions/_filters.html.slim +2 -2
- data/app/views/renalware/pd/adequacy_results/_table.html.slim +4 -4
- data/app/views/renalware/pd/adequacy_results/edit.html.slim +2 -2
- data/app/views/renalware/pd/adequacy_results/new.html.slim +2 -2
- data/app/views/renalware/pd/assessments/_form.html.slim +2 -2
- data/app/views/renalware/pd/assessments/_list.html.slim +2 -2
- data/app/views/renalware/pd/assessments/show.html.slim +1 -1
- data/app/views/renalware/pd/bag_types/_form.html.slim +2 -2
- data/app/views/renalware/pd/bag_types/_header.html.slim +1 -1
- data/app/views/renalware/pd/bag_types/index.html.slim +4 -4
- data/app/views/renalware/pd/dashboards/show/_apd_regimes.html.slim +1 -1
- data/app/views/renalware/pd/dashboards/show/_capd_regimes.html.slim +1 -1
- data/app/views/renalware/pd/dashboards/show/_page_actions.html.slim +1 -1
- data/app/views/renalware/pd/exit_site_infections/_details.html.slim +1 -1
- data/app/views/renalware/pd/exit_site_infections/_form.html.slim +2 -2
- data/app/views/renalware/pd/exit_site_infections/edit.html.slim +1 -1
- data/app/views/renalware/pd/exit_site_infections/new.html.slim +1 -1
- data/app/views/renalware/pd/infection_organisms/_form.html.slim +2 -2
- data/app/views/renalware/pd/infection_organisms/_table.html.slim +7 -5
- data/app/views/renalware/pd/peritonitis_episodes/_details.html.slim +1 -1
- data/app/views/renalware/pd/peritonitis_episodes/_form.html.slim +2 -2
- data/app/views/renalware/pd/peritonitis_episodes/edit.html.slim +1 -1
- data/app/views/renalware/pd/peritonitis_episodes/new.html.slim +1 -1
- data/app/views/renalware/pd/pet_adequacy_results/_form.html.slim +2 -2
- data/app/views/renalware/pd/pet_completions/_filters.html.slim +2 -2
- data/app/views/renalware/pd/pet_results/_table.html.slim +4 -4
- data/app/views/renalware/pd/pet_results/edit.html.slim +2 -2
- data/app/views/renalware/pd/pet_results/new.html.slim +2 -2
- data/app/views/renalware/pd/regimes/edit.html.slim +2 -2
- data/app/views/renalware/pd/regimes/new.html.slim +2 -2
- data/app/views/renalware/pd/training_sessions/_form.html.slim +2 -2
- data/app/views/renalware/pd/training_sessions/_list.html.slim +2 -2
- data/app/views/renalware/pd/training_sessions/show.html.slim +1 -1
- data/app/views/renalware/pd/unified_pet_adequacies/_form.html.slim +1 -1
- data/app/views/renalware/problems/notes/_form.html.slim +1 -1
- data/app/views/renalware/problems/notes/_table.html.slim +4 -5
- data/app/views/renalware/problems/problems/_archived_table.html.slim +2 -2
- data/app/views/renalware/problems/problems/_current_list.html.slim +1 -1
- data/app/views/renalware/problems/problems/_current_table.html.slim +4 -5
- data/app/views/renalware/problems/problems/_details.html.slim +1 -1
- data/app/views/renalware/problems/problems/_history.html.slim +1 -1
- data/app/views/renalware/problems/problems/_summary_part.html.slim +5 -5
- data/app/views/renalware/problems/problems/edit.html.slim +2 -2
- data/app/views/renalware/problems/problems/index.html.slim +1 -1
- data/app/views/renalware/problems/problems/new.html.slim +1 -1
- data/app/views/renalware/renal/aki_alerts/_aki_alert.html.slim +1 -1
- data/app/views/renalware/renal/aki_alerts/_filters.html.slim +2 -2
- data/app/views/renalware/renal/aki_alerts/edit.html.slim +1 -1
- data/app/views/renalware/renal/profiles/edit.html.slim +2 -2
- data/app/views/renalware/renal/profiles/show.html.slim +1 -1
- data/app/views/renalware/renal/registry_preflight_checks/_filters.html.slim +2 -2
- data/app/views/renalware/renal/registry_preflight_checks/_table.html.slim +1 -1
- data/app/views/renalware/reporting/audits/edit.html.slim +1 -1
- data/app/views/renalware/reporting/audits/index.html.slim +2 -2
- data/app/views/renalware/research/studies/_filters.html.slim +2 -2
- data/app/views/renalware/research/studies/index.html.slim +3 -3
- data/app/views/renalware/research/study_participants/_filters.html.slim +2 -2
- data/app/views/renalware/research/study_participants/_table.html.slim +4 -4
- data/app/views/renalware/research/study_participants/index.html.slim +1 -1
- data/app/views/renalware/snippets/snippets/_form.html.slim +2 -2
- data/app/views/renalware/snippets/snippets/_row.html.slim +2 -2
- data/app/views/renalware/snippets/snippets/_search_form.html.slim +1 -0
- data/app/views/renalware/snippets/snippets/_table.html.slim +1 -1
- data/app/views/renalware/system/downloads/_form.html.slim +1 -1
- data/app/views/renalware/system/downloads/index.html.slim +3 -3
- data/app/views/renalware/system/messages/_form.html.slim +1 -1
- data/app/views/renalware/system/messages/index.html.slim +3 -3
- data/app/views/renalware/system/user_feedback/edit.html.slim +1 -1
- data/app/views/renalware/system/user_feedback/index.html.slim +1 -1
- data/app/views/renalware/system/user_feedback/new.html.slim +1 -1
- data/app/views/renalware/system/view_metadata/edit.html.slim +2 -2
- data/app/views/renalware/transplants/donations/_form.html.slim +4 -4
- data/app/views/renalware/transplants/donations/_summary.html.slim +2 -2
- data/app/views/renalware/transplants/donations/show.html.slim +1 -1
- data/app/views/renalware/transplants/donor_dashboards/show.html.slim +1 -1
- data/app/views/renalware/transplants/donor_followups/_form.html.slim +4 -4
- data/app/views/renalware/transplants/donor_followups/show.html.slim +1 -1
- data/app/views/renalware/transplants/donor_operations/_form.html.slim +4 -4
- data/app/views/renalware/transplants/donor_operations/_list.html.slim +4 -5
- data/app/views/renalware/transplants/donor_operations/edit.html.slim +1 -1
- data/app/views/renalware/transplants/donor_operations/new.html.slim +1 -1
- data/app/views/renalware/transplants/donor_operations/show.html.slim +1 -1
- data/app/views/renalware/transplants/donor_stages/_list.html.slim +1 -1
- data/app/views/renalware/transplants/donor_stages/new.html.slim +2 -2
- data/app/views/renalware/transplants/donor_workups/_form.html.slim +4 -4
- data/app/views/renalware/transplants/donor_workups/_summary.html.slim +2 -2
- data/app/views/renalware/transplants/donor_workups/show.html.slim +1 -1
- data/app/views/renalware/transplants/live_donors/_filters.html.slim +2 -1
- data/app/views/renalware/transplants/live_donors/_index.html.slim +5 -5
- data/app/views/renalware/transplants/mdm_patients/_table.html.slim +6 -6
- data/app/views/renalware/transplants/recipient_dashboards/_page_actions.html.slim +1 -1
- data/app/views/renalware/transplants/recipient_followups/_form.html.slim +4 -4
- data/app/views/renalware/transplants/recipient_followups/show.html.slim +1 -1
- data/app/views/renalware/transplants/recipient_operations/_form.html.slim +4 -4
- data/app/views/renalware/transplants/recipient_operations/_list.html.slim +6 -7
- data/app/views/renalware/transplants/recipient_operations/_mdm_list.html.slim +1 -1
- data/app/views/renalware/transplants/recipient_operations/show.html.slim +1 -1
- data/app/views/renalware/transplants/recipient_workups/_form.html.slim +4 -4
- data/app/views/renalware/transplants/recipient_workups/_summary.html.slim +2 -2
- data/app/views/renalware/transplants/recipient_workups/show.html.slim +1 -1
- data/app/views/renalware/transplants/registration_statuses/_form.html.slim +2 -2
- data/app/views/renalware/transplants/registration_statuses/_list.html.slim +1 -1
- data/app/views/renalware/transplants/registrations/_form.html.slim +4 -4
- data/app/views/renalware/transplants/registrations/_summary.html.slim +2 -2
- data/app/views/renalware/transplants/registrations/show.html.slim +1 -1
- data/app/views/renalware/users/_filters.html.slim +3 -3
- data/app/views/renalware/virology/dashboards/_actions.html.slim +1 -1
- data/app/views/renalware/virology/profiles/_summary.html.slim +1 -1
- data/app/views/renalware/virology/profiles/edit.html.slim +2 -2
- data/app/views/renalware/virology/vaccination_types/_form.html.slim +10 -0
- data/app/views/renalware/virology/vaccination_types/edit.html.slim +3 -0
- data/app/views/renalware/virology/vaccination_types/index.html.slim +42 -0
- data/app/views/renalware/virology/vaccination_types/new.html.slim +3 -0
- data/app/views/renalware/virology/vaccinations/_alert.html.slim +7 -1
- data/app/views/renalware/virology/vaccinations/_list.html.slim +1 -1
- data/config/i18n-tasks.yml +154 -0
- data/config/initializers/inflections.rb +1 -0
- data/config/initializers/simple_form.rb +1 -1
- data/config/locales/{custom.yml → custom.en.yml} +12 -10
- data/config/locales/devise.en.yml +130 -42
- data/config/locales/devise.pt.yml +148 -0
- data/config/locales/devise.security_extension.en.yml +1 -0
- data/config/locales/en-GB.yml +0 -2
- data/config/locales/en.yml +79 -5
- data/config/locales/faker.en.yml +1 -1
- data/config/locales/{loinc_codes.yml → loinc_codes.en.yml} +1 -0
- data/config/locales/page_titles.en.yml +4 -3
- data/config/locales/pt.yml +305 -0
- data/config/locales/renalware/accesses/{assessment.yml → assessment.en.yml} +1 -0
- data/config/locales/renalware/accesses/plan.en.yml +1 -0
- data/config/locales/renalware/accesses/{procedure.yml → procedure.en.yml} +1 -0
- data/config/locales/renalware/accesses/{profile.yml → profile.en.yml} +1 -0
- data/config/locales/renalware/{address.yml → address.en.yml} +1 -0
- data/config/locales/renalware/admissions/{admissions.yml → admissions.en.yml} +1 -0
- data/config/locales/renalware/admissions/consults.en.yml +1 -0
- data/config/locales/renalware/admissions/requests.en.yml +1 -0
- data/config/locales/renalware/{age.yml → age.en.yml} +1 -0
- data/config/locales/renalware/blood_group.en.yml +1 -0
- data/config/locales/renalware/blood_pressure.en.yml +1 -0
- data/config/locales/renalware/clinical/allergies.en.yml +1 -2
- data/config/locales/renalware/clinical/{body_composition.yml → body_composition.en.yml} +1 -3
- data/config/locales/renalware/clinical/dry_weight.en.yml +4 -4
- data/config/locales/renalware/clinical/header.en.yml +1 -0
- data/config/locales/renalware/clinics/{visit.yml → visit.en.yml} +1 -0
- data/config/locales/renalware/dashboard/{dashboard.yml → dashboard.en.yml} +6 -10
- data/config/locales/renalware/dashboard/dashboard.pt.yml +7 -0
- data/config/locales/renalware/{dates_test.yml → dates_test.en.yml} +1 -0
- data/config/locales/renalware/directory/{person.yml → person.en.yml} +1 -0
- data/config/locales/renalware/errors.en.yml +1 -0
- data/config/locales/renalware/events/advanced_care_plan.en.yml +1 -0
- data/config/locales/renalware/events/biopsy.en.yml +1 -0
- data/config/locales/renalware/events/clinical_frailty_score.en.yml +1 -0
- data/config/locales/renalware/events/clinical_frailty_score_component.en.yml +1 -0
- data/config/locales/renalware/events/{events.yml → events.en.yml} +3 -6
- data/config/locales/renalware/events/investigation.en.yml +1 -0
- data/config/locales/renalware/events/swab.en.yml +5 -6
- data/config/locales/renalware/feeds/file.en.yml +1 -0
- data/config/locales/renalware/hd/accesses.en.yml +1 -0
- data/config/locales/renalware/hd/dashboards.en.yml +1 -0
- data/config/locales/renalware/hd/diary_slots.en.yml +1 -0
- data/config/locales/renalware/hd/mdm.en.yml +1 -0
- data/config/locales/renalware/hd/mdm_patients.en.yml +39 -0
- data/config/locales/renalware/hd/{preference_set.yml → preference_set.en.yml} +1 -0
- data/config/locales/renalware/hd/prescription_administration.en.yml +1 -0
- data/config/locales/renalware/hd/{profile.yml → profile.en.yml} +2 -1
- data/config/locales/renalware/hd/protocol.en.yml +2 -1
- data/config/locales/renalware/hd/session.en.yml +3 -1
- data/config/locales/renalware/hospitals/{unit.yml → unit.en.yml} +1 -0
- data/config/locales/renalware/letters/contact.en.yml +9 -7
- data/config/locales/renalware/letters/letter.en.yml +10 -0
- data/config/locales/renalware/letters/letter.pt.yml +7 -0
- data/config/locales/renalware/letters/recipient.en.yml +2 -1
- data/config/locales/renalware/low_clearance/dashboard.en.yml +3 -2
- data/config/locales/renalware/low_clearance/low_clearance.en.yml +9 -1
- data/config/locales/renalware/low_clearance/profile.en.yml +3 -2
- data/config/locales/renalware/{mdm.yml → mdm.en.yml} +1 -5
- data/config/locales/renalware/medications/drug_types/esa_prescriptions.en.yml +1 -0
- data/config/locales/renalware/medications/{prescription.yml → prescription.en.yml} +1 -0
- data/config/locales/renalware/medications/prescriptions/drug_select.en.yml +1 -0
- data/config/locales/renalware/medications/{route.yml → route.en.yml} +1 -0
- data/config/locales/renalware/medications/{tabbed_prescriptions_list_component.yml → tabbed_prescriptions_list_component.en.yml} +1 -1
- data/config/locales/renalware/messaging/internal/messages.en.yml +1 -15
- data/config/locales/renalware/modalities/modalities.en.yml +1 -0
- data/config/locales/renalware/navigation/menu.en.yml +13 -0
- data/config/locales/renalware/navigation/menu.pt.yml +14 -0
- data/config/locales/renalware/navigation/patient_search.en.yml +1 -0
- data/config/locales/renalware/navigation/renal.en.yml +2 -1
- data/config/locales/renalware/nhs_number.en.yml +1 -0
- data/config/locales/renalware/page_titles.pt.yml +20 -0
- data/config/locales/renalware/pathology/{requests.yml → requests.en.yml} +1 -0
- data/config/locales/renalware/{patient.yml → patient.en.yml} +1 -0
- data/config/locales/renalware/patients/alerts.en.yml +1 -0
- data/config/locales/renalware/patients/bookmarks.en.yml +1 -0
- data/config/locales/renalware/patients/patients.en.yml +1 -0
- data/config/locales/renalware/patients/search_form.en.yml +1 -0
- data/config/locales/renalware/patients/side_menu.en.yml +2 -1
- data/config/locales/renalware/patients/side_menu.pt.yml +40 -0
- data/config/locales/renalware/patients/worries.en.yml +1 -0
- data/config/locales/renalware/pd/adequacy_result.en.yml +1 -0
- data/config/locales/renalware/pd/assessments.en.yml +1 -0
- data/config/locales/renalware/pd/assistance_types.en.yml +1 -0
- data/config/locales/renalware/pd/{bag_types.yml → bag_types.en.yml} +1 -0
- data/config/locales/renalware/pd/dashboard.en.yml +1 -0
- data/config/locales/renalware/pd/exit_site_infection.en.yml +1 -0
- data/config/locales/renalware/pd/mdm.en.yml +1 -0
- data/config/locales/renalware/pd/{peritonitis_episodes.yml → peritonitis_episodes.en.yml} +1 -0
- data/config/locales/renalware/pd/pet_adequacy_result.en.yml +1 -0
- data/config/locales/renalware/pd/pet_result.en.yml +1 -0
- data/config/locales/renalware/pd/regime.en.yml +1 -0
- data/config/locales/renalware/pd/training_sessions.en.yml +1 -0
- data/config/locales/renalware/pd/treatments.en.yml +1 -0
- data/config/locales/renalware/problems/{note.yml → problems.en.yml} +1 -0
- data/config/locales/renalware/renal/aki_alerts.en.yml +1 -0
- data/config/locales/renalware/renal/profile.en.yml +1 -0
- data/config/locales/renalware/renal/registry.en.yml +1 -0
- data/config/locales/renalware/reporting/audit.en.yml +1 -0
- data/config/locales/renalware/research/study_participant.en.yml +1 -0
- data/config/locales/renalware/{shared.yml → shared.en.yml} +1 -0
- data/config/locales/renalware/snippets/snippets.en.yml +1 -0
- data/config/locales/renalware/transplants/{donation.yml → donation.en.yml} +1 -0
- data/config/locales/renalware/transplants/donor_dashboard.en.yml +1 -0
- data/config/locales/renalware/transplants/{donor_followup.yml → donor_followup.en.yml} +1 -0
- data/config/locales/renalware/transplants/{donor_operation.yml → donor_operation.en.yml} +1 -0
- data/config/locales/renalware/transplants/{donor_workup.yml → donor_workup.en.yml} +1 -0
- data/config/locales/renalware/transplants/live_donors.en.yml +1 -0
- data/config/locales/renalware/transplants/mdm.en.yml +1 -0
- data/config/locales/renalware/transplants/recipient_dashboards.en.yml +1 -0
- data/config/locales/renalware/transplants/{recipient_followup.yml → recipient_followup.en.yml} +1 -0
- data/config/locales/renalware/transplants/{recipient_operation.yml → recipient_operation.en.yml} +1 -0
- data/config/locales/renalware/transplants/{recipient_workup.yml → recipient_workup.en.yml} +1 -0
- data/config/locales/renalware/transplants/{registration.yml → registration.en.yml} +1 -0
- data/config/locales/renalware/transplants/rejection_episode.en.yml +1 -0
- data/config/locales/renalware/virology/virology.en.yml +1 -1
- data/config/locales/simple_form.en.yml +1 -0
- data/config/locales/validates_timeliness.en.yml +1 -0
- data/config/permissions.yml +1 -0
- data/config/routes/events.rb +1 -1
- data/config/routes/virology.rb +6 -0
- data/db/migrate/20180112151706_create_low_clearance_profiles.rb +1 -1
- data/db/migrate/20190131152758_create_event_categories.rb +36 -0
- data/db/migrate/20201217154345_update_reporting_anaemia_audit.rb +7 -0
- data/db/migrate/20201217155107_update_reporting_bone_audit.rb +7 -0
- data/db/migrate/20201229174653_add_language_to_users.rb +5 -0
- data/db/migrate/20210305100015_add_named_nurse_to_patients.rb +33 -0
- data/db/migrate/20210305105830_update_mdm_views_for_named_nurse_changes.rb +7 -0
- data/db/migrate/20210305181345_deprecate_issued_on_in_letters.rb +8 -0
- data/db/migrate/20210305191214_update_reporting_daily_letters_view.rb +11 -0
- data/db/migrate/20210310154134_create_akcc_mdm_patients_view.rb +7 -0
- data/db/seeds/default/clinics/clinics.rb +1 -1
- data/db/seeds/default/events/event_categories.rb +9 -0
- data/db/seeds/default/events/event_types.csv +10 -10
- data/db/seeds/default/events/event_types.rb +6 -3
- data/db/seeds/default/events/seeds.rb +1 -0
- data/db/seeds/default/modalities/descriptions.rb +18 -6
- data/db/seeds/default/system/view_metadata.rb +2 -2
- data/db/views/akcc_mdm_patients_v01.sql +39 -0
- data/db/views/hd_mdm_patients_v03.sql +70 -0
- data/db/views/reporting_anaemia_audit_v02.sql +39 -0
- data/db/views/reporting_bone_audit_v02.sql +31 -0
- data/db/views/reporting_daily_letters_v03.sql +4 -0
- data/lib/collection_presenter.rb +1 -1
- data/lib/core_extensions/i18n/always_cascade.rb +17 -1
- data/lib/core_extensions/i18n/handle_blank_value.rb +1 -1
- data/lib/renalware/engine.rb +4 -2
- data/lib/renalware/version_number.rb +1 -1
- data/lib/tasks/demo_data.rake +0 -1
- data/spec/factories/events/categories.rb +8 -0
- data/spec/factories/events/{events_types.rb → types.rb} +9 -1
- data/spec/factories/letters/letters.rb +1 -1
- data/spec/factories/low_clearance/modality_descriptions.rb +1 -1
- data/spec/factories/modalities/modality_descriptions.rb +1 -1
- data/spec/support/date_helpers.rb +2 -2
- data/spec/support/letters_spec_helper.rb +1 -1
- data/vendor/assets/stylesheets/foundation/components/_forms.scss +153 -148
- metadata +119 -74
- data/config/locales/renalware/hd/mdm_patients.yml +0 -43
@@ -16,6 +16,11 @@
|
|
16
16
|
as: :select,
|
17
17
|
label: "Enclosure",
|
18
18
|
input_html: { disabled: form.disabled_inputs.include?(:enclosures_present) }
|
19
|
+
.small-6.medium-1.large-1.columns
|
20
|
+
= f.input :notes_present,
|
21
|
+
as: :select,
|
22
|
+
label: "Notes",
|
23
|
+
input_html: { disabled: form.disabled_inputs.include?(:notes_present) }
|
19
24
|
.small-6.medium-2.large-2.columns
|
20
25
|
= f.input :state_eq,
|
21
26
|
collection: form.letter_state_options,
|
@@ -33,7 +38,7 @@
|
|
33
38
|
as: :user_picker,
|
34
39
|
collection: form.typist_options,
|
35
40
|
label: "Typist"
|
36
|
-
.small-6.medium-2.large-
|
41
|
+
.small-6.medium-2.large-1.columns
|
37
42
|
= f.input :letterhead_id_eq,
|
38
43
|
collection: form.letterhead_options,
|
39
44
|
label: "Letterhead"
|
@@ -43,12 +48,12 @@
|
|
43
48
|
label: "Pages",
|
44
49
|
include_blank: form.allow_blank_inputs.include?(:page_count_in_array)
|
45
50
|
.small-12.medium-2.large-2.columns.actions.end
|
46
|
-
= f.submit t("
|
51
|
+
= f.submit t("btn.filter"), class: "button secondary"
|
47
52
|
' or
|
48
|
-
= link_to t("
|
53
|
+
= link_to t("btn.reset"), renalware.letters_filtered_letters_list_path(named_filter: named_filter)
|
49
54
|
|
50
55
|
- if named_filter == :batch_printable
|
51
|
-
/
|
56
|
+
/ This form will all hidden fields and one button is otherwise a mirror of the above filter form.
|
52
57
|
/ It POSTs the form to create a batch and its items (which really just help us to keep track)
|
53
58
|
/ or what was printed and the user does not need to know about it) and once created
|
54
59
|
/ it pops up a dialog with a spinner and an asycn_render partial that, once the PDFs are compiled
|
@@ -62,6 +67,7 @@
|
|
62
67
|
method: :post,
|
63
68
|
remote: true do |f|
|
64
69
|
= f.input :enclosures_present, as: :hidden
|
70
|
+
= f.input :notes_present, as: :hidden
|
65
71
|
= f.input :state_eq, as: :hidden
|
66
72
|
= f.input :author_id_eq, as: :hidden
|
67
73
|
= f.input :created_by_id_eq, as: :hidden
|
@@ -1,6 +1,6 @@
|
|
1
1
|
- content_for(:actions) do
|
2
2
|
- if policy(Renalware::Letters::Mailshots::Mailshot).new?
|
3
|
-
= link_to "
|
3
|
+
= link_to t("btn.add"), new_letters_mailshot_path, class: :button
|
4
4
|
|
5
5
|
= within_new_admin_layout(title: "Mailshots") do
|
6
6
|
table.toggleable.mailshots data-controller="toggle"
|
@@ -4,7 +4,7 @@
|
|
4
4
|
header
|
5
5
|
h2.noprint= t(".title")
|
6
6
|
ul
|
7
|
-
li= link_to "
|
7
|
+
li= link_to t("btn.edit"),
|
8
8
|
edit_patient_low_clearance_profile_path(profile.patient),
|
9
9
|
class: "button"
|
10
10
|
|
@@ -45,83 +45,3 @@
|
|
45
45
|
dd= document.self_care_possible&.text
|
46
46
|
dt= t(".access_notes")
|
47
47
|
dd= document.access_notes
|
48
|
-
/ Date first seen
|
49
|
-
/ Dialysis plan
|
50
|
-
/ Dialysis plan date
|
51
|
-
/ Predicted ESRF date
|
52
|
-
/ Referral CRE
|
53
|
-
/ Referred by
|
54
|
-
/ Education status
|
55
|
-
/ Referral eGFR
|
56
|
-
/ Education type
|
57
|
-
/ Date attended educ.
|
58
|
-
/ 'Your Kidneys' DVD
|
59
|
-
/ 'Dialysis Choices' DVD
|
60
|
-
/ Tx team referral
|
61
|
-
/ Referral date
|
62
|
-
/ Home HD
|
63
|
-
/ Self Care
|
64
|
-
/ Low Clearance access notes
|
65
|
-
/ dl.dl-horizontal.large
|
66
|
-
/ dt= t(".last_update")
|
67
|
-
/ dd= profile.datw
|
68
|
-
/ dt= t(".schedule")
|
69
|
-
/ dd= profile.current_schedule
|
70
|
-
/ dt= t(".hospital_unit")
|
71
|
-
/ dd= profile.hospital_unit
|
72
|
-
/ dt= t(".prescribed_time")
|
73
|
-
/ dd= profile.formatted_prescribed_time
|
74
|
-
/ dt= t(".hd_type")
|
75
|
-
/ dd= profile.hd_type
|
76
|
-
/ dt= t(".named_nurse")
|
77
|
-
/ dd= profile.named_nurse
|
78
|
-
/ dt= t(".dialyser")
|
79
|
-
/ dd= profile.dialyser
|
80
|
-
/ dt= t(".dialysate")
|
81
|
-
/ dd= profile.dialysate
|
82
|
-
/ dt= t(".cannulation_type")
|
83
|
-
/ dd= profile.cannulation_type
|
84
|
-
/ dt= t(".anticoagulant.type")
|
85
|
-
/ dd= profile.anticoagulant_type.try!(:text)
|
86
|
-
|
87
|
-
/ dl.dl-horizontal.large.full-hd-profile
|
88
|
-
/ dt.inset=t(".anticoagulant.loading_dose")
|
89
|
-
/ dd.inset= profile.anticoagulant_loading_dose
|
90
|
-
/ dt.inset= t(".anticoagulant.hourly_dose")
|
91
|
-
/ dd.inset= profile.anticoagulant_hourly_dose
|
92
|
-
/ dt.inset= t(".anticoagulant.stop_time")
|
93
|
-
/ dd.inset= profile.anticoagulant_stop_time
|
94
|
-
|
95
|
-
/ dt= t(".needle_size")
|
96
|
-
/ dd= profile.needle_size
|
97
|
-
/ dt= t(".single_needle")
|
98
|
-
/ dd= profile.single_needle.try!(:text)
|
99
|
-
/ dt= t(".blood_flow")
|
100
|
-
/ dd= profile.blood_flow
|
101
|
-
/ dt= t(".temperature")
|
102
|
-
/ dd= profile.temperature
|
103
|
-
/ dt= t(".bicarbonate")
|
104
|
-
/ dd= profile.bicarbonate
|
105
|
-
/ dt= t(".has_sodium_profiling")
|
106
|
-
/ dd= profile.has_sodium_profiling.try!(:text)
|
107
|
-
/ dt.inset= t(".sodium_first_half")
|
108
|
-
/ dd.inset= profile.sodium_first_half
|
109
|
-
/ dt.inset= t(".sodium_second_half")
|
110
|
-
/ dd.inset= profile.sodium_second_half
|
111
|
-
|
112
|
-
/ dt= t(".drugs.on_esa")
|
113
|
-
/ dd= profile.drugs_on_esa.try!(:text)
|
114
|
-
/ dt= t(".drugs.on_iron")
|
115
|
-
/ dd= profile.drugs_on_iron.try!(:text)
|
116
|
-
/ dt= t(".drugs.on_warfarin")
|
117
|
-
/ dd= profile.drugs_on_warfarin.try!(:text)
|
118
|
-
|
119
|
-
/ dt= t(".transport.has_transport")
|
120
|
-
/ dd= profile.transport.has_transport.try!(:text)
|
121
|
-
/ dt.inset= t(".transport.type")
|
122
|
-
/ dd.inset= profile.transport.type.try!(:text)
|
123
|
-
/ dt.inset= t(".transport.decided_on")
|
124
|
-
/ dd.inset= profile.transport.present? && I18n.l(profile.transport&.decided_on)
|
125
|
-
|
126
|
-
/ dt= t(".care_level.summary")
|
127
|
-
/ dd= profile.care_level
|
@@ -1,11 +1,5 @@
|
|
1
1
|
= within_patient_layout(title: "Profile",
|
2
|
-
breadcrumbs: breadcrumb_for("
|
3
|
-
|
4
|
-
/ in show
|
5
|
-
/ = render "renalware/shared/documents/attributes_group",
|
6
|
-
group: profile.document.low_clearance,
|
7
|
-
legend: "Low Clearance",
|
8
|
-
width: "xlarge"
|
2
|
+
breadcrumbs: breadcrumb_for(t(".akcc_summary.title"), patient_low_clearance_dashboard_path(patient))) do
|
9
3
|
|
10
4
|
= simple_form_for profile,
|
11
5
|
url: patient_low_clearance_profile_path(patient),
|
@@ -41,6 +35,6 @@
|
|
41
35
|
= flc.input :access_notes, as: :text, wrapper: :horizontal_large
|
42
36
|
|
43
37
|
.form-actions
|
44
|
-
= f.submit "
|
38
|
+
= f.submit t("btn.save"), class: "button"
|
45
39
|
' or
|
46
|
-
= link_to "cancel", patient_low_clearance_dashboard_path(patient)
|
40
|
+
= link_to t("btn.cancel"), patient_low_clearance_dashboard_path(patient)
|
@@ -5,14 +5,14 @@
|
|
5
5
|
.supplemental
|
6
6
|
span= "#{mdm.clinic_visits.length} of #{mdm.patient.summary.clinic_visits_count}"
|
7
7
|
span.noprint
|
8
|
-
= link_to "
|
8
|
+
= link_to t("btn.view_all"),
|
9
9
|
patient_clinic_visits_path(mdm.patient),
|
10
10
|
class: "button secondary"
|
11
11
|
= link_to new_patient_clinic_visit_path(mdm.patient),
|
12
12
|
class: "button",
|
13
13
|
target: "_blank" do
|
14
14
|
i.fa.fa-external-link-square-alt
|
15
|
-
|
15
|
+
= t("btn.add")
|
16
16
|
|
17
17
|
= render "renalware/clinics/clinic_visits/table",
|
18
18
|
clinic_visits: mdm.clinic_visits,
|
@@ -5,11 +5,11 @@
|
|
5
5
|
| Update
|
6
6
|
end
|
7
7
|
|
8
|
-
= link_to "
|
8
|
+
= link_to t("btn.view_all"),
|
9
9
|
patient_prescriptions_path(patient),
|
10
10
|
class: "button secondary"
|
11
11
|
|
12
|
-
= link_to "
|
12
|
+
= link_to t("btn.toggle"),
|
13
13
|
"#prescriptions",
|
14
14
|
class: "button secondary",
|
15
15
|
data: { behaviour: "css-toggler" }
|
@@ -5,10 +5,10 @@ article
|
|
5
5
|
span= "#{mdm.current_problems.length} of #{mdm.patient.summary.problems_count}"
|
6
6
|
|
7
7
|
span.noprint
|
8
|
-
= link_to t(".view_all"),
|
8
|
+
= link_to t("btn.view_all"),
|
9
9
|
patient_problems_path(mdm.patient),
|
10
10
|
class: "button secondary"
|
11
|
-
= link_to "
|
11
|
+
= link_to t("btn.toggle"),
|
12
12
|
"#problems",
|
13
13
|
class: "button secondary",
|
14
14
|
data: { behaviour: "css-toggler" }
|
@@ -3,12 +3,12 @@ table#patients.mdm-patients.columns
|
|
3
3
|
thead
|
4
4
|
tr
|
5
5
|
th.col-width-tiny
|
6
|
-
th.col-width-large= sort_link(path, :family_name, t(".
|
7
|
-
th.col-width-nhs-no= sort_link(path, :nhs_number, t(".
|
8
|
-
th.col-width-reference-no= t(".
|
9
|
-
th.col-width-tiny= t(".sex")
|
10
|
-
th.col-width-tiny= t(".age")
|
11
|
-
th.col-width-medium= t(".modality")
|
6
|
+
th.col-width-large= sort_link(path, :family_name, t(".thead.patient_name"))
|
7
|
+
th.col-width-nhs-no= sort_link(path, :nhs_number, t(".thead.nhs_number"))
|
8
|
+
th.col-width-reference-no= t(".thead.hospital_number")
|
9
|
+
th.col-width-tiny= t(".thead.sex")
|
10
|
+
th.col-width-tiny= t(".thead.age")
|
11
|
+
th.col-width-medium= t(".thead.modality")
|
12
12
|
th.col-width-date= sort_link(path, :transplant_registration_status, t(".registration_status"))
|
13
13
|
- %i(hgb ure cre).each do |code|
|
14
14
|
th.col-width-tiny= sort_link(path, code, t(".#{code}"))
|
@@ -5,11 +5,10 @@
|
|
5
5
|
article
|
6
6
|
header
|
7
7
|
h2
|
8
|
-
= link_to "
|
8
|
+
= link_to "#{t('titles.current_prescriptions')} (#{summary_part.current_prescriptions.length})",
|
9
9
|
patient_prescriptions_path(summary_part.patient)
|
10
10
|
|
11
|
-
= link_to patient_prescriptions_path(summary_part.patient), class: "button"
|
12
|
-
| Add
|
11
|
+
= link_to t("btn.add"), patient_prescriptions_path(summary_part.patient), class: "button"
|
13
12
|
|
14
13
|
ul.no-bullet
|
15
14
|
- summary_part.current_prescriptions.each do |prescription|
|
@@ -8,7 +8,6 @@
|
|
8
8
|
= simple_form_for search,
|
9
9
|
url: medications_esa_prescriptions_path,
|
10
10
|
method: :get do |f|
|
11
|
-
/= search_form_for(search, url: medications_esa_prescriptions_path) do |f|
|
12
11
|
.small-6.columns
|
13
12
|
= f.input search_scope, label: t(".search_prompt")
|
14
13
|
.small-3.columns
|
@@ -19,5 +18,4 @@
|
|
19
18
|
.small-3.columns.actions.end
|
20
19
|
= f.submit "Search", class: "button"
|
21
20
|
' or
|
22
|
-
= link_to "
|
23
|
-
/class: "cancel-link #{'disabled' unless searching}"
|
21
|
+
= link_to t("btn.reset"), medications_esa_prescriptions_path
|
@@ -6,7 +6,7 @@ div
|
|
6
6
|
th.col-width-medium= sort_link([:renalware, search], "patient_family_name", t(".patient_name"))
|
7
7
|
th.patient_age= sort_link([:renalware, search], "patient_born_on", t(".patient_age"))
|
8
8
|
th.patient_sex= t(".patient_sex")
|
9
|
-
th.col-width-medium= sort_link([:renalware, search], "patient_current_modality_description_name", t(".modality"))
|
9
|
+
th.col-width-medium= sort_link([:renalware, search], "patient_current_modality_description_name", t(".thead.modality"))
|
10
10
|
th.col-width-date= sort_link([:renalware, search], "prescribed_on", t(".prescribed_on"))
|
11
11
|
th.col-width-date.hide-for-small-only
|
12
12
|
= sort_link([:renalware, search], "terminated_on", t(".terminated_on"))
|
@@ -52,7 +52,7 @@
|
|
52
52
|
= "#{event.homecare_form&.supplier&.name} '#{event.homecare_form&.form_name} version #{event.homecare_form&.form_version}'"
|
53
53
|
|
54
54
|
- disabled_args = event.errors.any? ? { disabled: "disabled" } : {}
|
55
|
-
= link_to "
|
55
|
+
= link_to t("btn.print"),
|
56
56
|
renalware.patient_medications_home_delivery_event_path(id: event.id, format: :pdf),
|
57
57
|
target: "_blank",
|
58
58
|
class: "button primary right home-delivery--print",
|
@@ -24,6 +24,6 @@
|
|
24
24
|
label: "Give on HD"
|
25
25
|
|
26
26
|
.flex-shrink-0.pt-4.filters--actions
|
27
|
-
= f.submit t("
|
27
|
+
= f.submit t("btn.filter"), class: "button secondary"
|
28
28
|
' or
|
29
|
-
= link_to "reset", patient_prescriptions_path(@patient)
|
29
|
+
= link_to t("btn.reset"), patient_prescriptions_path(@patient)
|
@@ -8,7 +8,7 @@ ruby:
|
|
8
8
|
br
|
9
9
|
= simple_form_for prescription,
|
10
10
|
url: url,
|
11
|
-
html: { class: "prescription-form", autocomplete: "off" },
|
11
|
+
html: { class: "fn-form prescription-form", autocomplete: "off" },
|
12
12
|
remote: true,
|
13
13
|
wrapper: :horizontal_form do |f|
|
14
14
|
|
@@ -65,4 +65,4 @@ ruby:
|
|
65
65
|
- if policy(prescription).create?
|
66
66
|
= f.button :submit, "Save"
|
67
67
|
' or
|
68
|
-
= link_to "cancel", patient_prescriptions_path(patient, treatable), remote: true
|
68
|
+
= link_to t("btn.cancel"), patient_prescriptions_path(patient, treatable), remote: true
|
@@ -1,8 +1,8 @@
|
|
1
1
|
- if prescription.current? && policy(prescription).edit?
|
2
|
-
= link_to "
|
2
|
+
= link_to t("btn.edit"), edit_patient_prescription_path(patient, prescription), remote: true
|
3
3
|
- unless prescription.terminated_or_marked_for_termination?
|
4
4
|
- if policy(prescription).destroy?
|
5
|
-
= link_to "
|
5
|
+
= link_to t("btn.terminate"),
|
6
6
|
new_patient_medications_prescription_termination_path(patient,
|
7
7
|
prescription,
|
8
8
|
@treatable),
|
@@ -11,7 +11,7 @@ tr(class="#{ "urgent" if message.urgent?}" id=message.html_identifier)
|
|
11
11
|
td= patient.hospital_identifier
|
12
12
|
td.col-width-medium-with-ellipsis= message.subject
|
13
13
|
td
|
14
|
-
= link_to "
|
14
|
+
= link_to t("btn.toggle"),
|
15
15
|
"##{message.html_preview_identifier}",
|
16
16
|
data: { behaviour: "toggler" },
|
17
17
|
class: :right
|
@@ -10,7 +10,7 @@ tr(class="#{ "urgent" if message.urgent?}" id=message.html_identifier)
|
|
10
10
|
td= message.patient.hospital_identifier
|
11
11
|
td.col-width-medium-with-ellipsis= message.subject
|
12
12
|
td
|
13
|
-
= link_to "
|
13
|
+
= link_to t("btn.view"),
|
14
14
|
"##{message.html_preview_identifier}",
|
15
15
|
data: { behaviour: "toggler" },
|
16
16
|
class: :right
|
@@ -2,13 +2,13 @@
|
|
2
2
|
table.messages.messages-sent.has_togglable_content
|
3
3
|
thead
|
4
4
|
tr
|
5
|
-
th.col-width-date-time= t(".sent_at")
|
6
|
-
th= t(".recipient")
|
7
|
-
th.col-width-date-time= t(".read_at")
|
8
|
-
th.col-width-large= t(".
|
9
|
-
th.col-width-nhs-no= t(".
|
10
|
-
th.col-width-reference-no= t(".
|
11
|
-
th= t(".subject")
|
5
|
+
th.col-width-date-time= t(".thead.sent_at")
|
6
|
+
th= t(".thead.recipient")
|
7
|
+
th.col-width-date-time= t(".thead.read_at")
|
8
|
+
th.col-width-large= t(".thead.patient")
|
9
|
+
th.col-width-nhs-no= t(".thead.nhs_number")
|
10
|
+
th.col-width-reference-no= t(".thead.hospital_number")
|
11
|
+
th= t(".thead.subject")
|
12
12
|
td
|
13
13
|
tbody
|
14
14
|
= render partial: "sent_receipt", collection: receipts
|
@@ -1,14 +1,14 @@
|
|
1
1
|
table.auto-layout.align-top.messages.has-togglable-rows
|
2
2
|
thead
|
3
3
|
tr
|
4
|
-
th.col-width-tinyish= t(".age")
|
5
|
-
th.col-width-medium= t(".
|
6
|
-
th.col-width-date-time= t(".sent_at")
|
7
|
-
th.col-width-date-time= t(".read_at")
|
8
|
-
th.at-least.col-width-medium= t(".
|
9
|
-
th.col-width-nhs-no= t(".
|
10
|
-
th.col-width-reference-no= t(".
|
11
|
-
th= t(".subject")
|
4
|
+
th.col-width-tinyish= t(".thead.age")
|
5
|
+
th.col-width-medium= t(".thead.sent_from")
|
6
|
+
th.col-width-date-time= t(".thead.sent_at")
|
7
|
+
th.col-width-date-time= t(".thead.read_at")
|
8
|
+
th.at-least.col-width-medium= t(".thead.patient")
|
9
|
+
th.col-width-nhs-no= t(".thead.nhs_number")
|
10
|
+
th.col-width-reference-no= t(".thead.hospital_number")
|
11
|
+
th= t(".thead.subject")
|
12
12
|
td.col-width-tiny
|
13
13
|
|
14
14
|
tbody
|