1.0.1 release #15

Merged
williamp merged 35 commits from testing into master 2023-03-21 18:10:14 +00:00
30 changed files with 291 additions and 28 deletions
Showing only changes of commit da225224b0 - Show all commits

View File

@@ -9,7 +9,10 @@
<p>
<b><a href="/task/{{ event.tasks.id }}">
{{ event.tasks.title }}
</a></b> <br> {{ event.tasks.description }}
</a></b> <br>{% if event.tasks.description != None %}
<p>{{ event.tasks.description }}</p>
{% endif %}
</p>
{% else %}
<div><p>(no task assigned... yet)</p></div>

View File

@@ -20,7 +20,9 @@
</a>
</b>
<div>
{% if event.tasks.description != None %}
<p>{{ event.tasks.description }}</p>
{% endif %}
</div>
{% else %}
<div><p>(no task assigned... yet)</p></div>

View File

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

View File

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