Skip to content

Commit

Permalink
Merge e4ee25c into e3b93f0
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmiller committed Apr 8, 2020
2 parents e3b93f0 + e4ee25c commit 9eb05e1
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
18 changes: 18 additions & 0 deletions elcid/migrations/0045_auto_20200408_0944.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 2.0.9 on 2020-04-08 09:44

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('elcid', '0044_auto_20200407_1309'),
]

operations = [
migrations.AlterField(
model_name='icuadmission',
name='apache2_score',
field=models.CharField(blank=True, max_length=200, null=True, verbose_name='APACHE II Score'),
),
]
2 changes: 1 addition & 1 deletion elcid/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -819,7 +819,7 @@ class ICUAdmission(EpisodeSubrecord):
discharge_date = models.DateField(blank=True, null=True)
apache2_score = models.CharField(
max_length=200, blank=True, null=True,
verbose_name="APACHE2 Score")
verbose_name="APACHE II Score")
outcome = models.CharField(
max_length=200, blank=True, null=True, choices=OUTCOMES
)
Expand Down
2 changes: 1 addition & 1 deletion elcid/templates/records/icu_admission.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
</div>
<div class="row">
<div class="col-md-8">
<b>APACHE2 Score On Admission</b>
<b>APACHE II Score On Admission</b>
</div>
<div class="col-md-4">
[[ item.apache2_score ]]
Expand Down

0 comments on commit 9eb05e1

Please sign in to comment.