adjust jinja2 templates to handle cases of no description

This commit is contained in:
2022-12-01 22:51:34 -05:00
parent 2b315caf9e
commit da225224b0
4 changed files with 12 additions and 3 deletions

View File

@@ -8,7 +8,9 @@
<div>
<div>
<br>
<p>{{ task.description }}</p>
{% if task.description != None %}
<p>{{ task.description }}</p>
{% endif %}
</div>
<div>
<p>Created: {{ createdTime.strftime('%Y-%m-%d %I:%M %p') }} </p>