adjust jinja2 templates to handle cases of no description
This commit is contained in:
@@ -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>
|
||||
|
Reference in New Issue
Block a user