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> <p>
<b><a href="/task/{{ event.tasks.id }}"> <b><a href="/task/{{ event.tasks.id }}">
{{ event.tasks.title }} {{ event.tasks.title }}
</a></b> <br> {{ event.tasks.description }}
</a></b> <br>{% if event.tasks.description != None %}
<p>{{ event.tasks.description }}</p>
{% endif %}
</p> </p>
{% else %} {% else %}
<div><p>(no task assigned... yet)</p></div> <div><p>(no task assigned... yet)</p></div>

View File

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

View File

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

View File

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