Let user supply a note for report

This commit is contained in:
Mouse Reeve
2021-03-11 17:38:21 -08:00
parent 7f45206693
commit 33b8537a3d
9 changed files with 73 additions and 25 deletions

View File

@@ -9,7 +9,7 @@
{% block card-content %}
<div class="block">
{% if report.notes %}{{ report.notes }}{% else %}<em>{% trans "No notes provided" %}</em>{% endif %}
{% if report.note %}{{ report.note }}{% else %}<em>{% trans "No notes provided" %}</em>{% endif %}
</div>
{% endblock %}