Remove ounces references for feeding amounts.

This commit is contained in:
Christopher Charbonneau Wells 2018-03-13 19:10:21 -07:00
parent 47d1e1af98
commit 911cde4f95
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@
<td>{{ feeding.type }}</td> <td>{{ feeding.type }}</td>
<td> <td>
{% if feeding.amount %} {% if feeding.amount %}
{{ feeding.amount }} oz. {{ feeding.amount }}
{% endif %} {% endif %}
</td> </td>
<td>{{ feeding.duration|duration_string }}</td> <td>{{ feeding.duration|duration_string }}</td>

View File

@ -14,7 +14,7 @@
{% if feeding %} {% if feeding %}
{{ feeding.type }}, {{ feeding.method }} {{ feeding.type }}, {{ feeding.method }}
{% if feeding.amount %} {% if feeding.amount %}
, {{ feeding.amount }}oz. ({{ feeding.amount }})
{% endif %} {% endif %}
{% endif %} {% endif %}
{% endblock %} {% endblock %}