Skip to content

Commit

Permalink
Merge pull request #227 from openhealthcare/220-add-sepsis
Browse files Browse the repository at this point in the history
220 add sepsis
  • Loading branch information
davidmiller committed Jun 21, 2017
2 parents 2058395 + 180f30c commit db171dc
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions elcid/patient_lists.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,48 +77,63 @@ class Chronic(RfhPatientList):
template_name = 'episode_list.html'
schema = []


class Haematology(RfhPatientList):
display_name = 'Haematology'
direct_add = True
tag = "haem"
template_name = 'episode_list.html'
schema = []


class HIV(RfhPatientList):
display_name = 'HIV'
direct_add = True
tag = "hiv"
template_name = 'episode_list.html'
schema = []


class Paediatric(RfhPatientList):
display_name = 'Paediatric'
direct_add = True
tag = "paediatric"
template_name = 'episode_list.html'
schema = []


class MalboroughClinic(RfhPatientList):
display_name = 'Malborough Clinic'
direct_add = True
tag = "malborough"
template_name = 'episode_list.html'
schema = []


class Renal(RfhPatientList):
display_name = 'Renal'
direct_add = True
tag = "renal"
template_name = 'episode_list.html'
schema = []


class TB(RfhPatientList):
display_name = 'TB'
direct_add = True
tag = "tb"
template_name = 'episode_list.html'
schema = []


class Sepsis(RfhPatientList):
display_name = 'Sepsis Pathway'
direct_add = True
tag = "sepsis"
template_name = 'episode_list.html'
schema = []


class Bacteraemia(RfhPatientList):
display_name = 'Bacteraemia'
direct_add = True
Expand Down

0 comments on commit db171dc

Please sign in to comment.