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

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