taskwarrior web package
This commit is contained in:
parent
e79220af5c
commit
b16d004685
16 changed files with 4093 additions and 1 deletions
18
modules/home/tww/dist/templates/desc.html
vendored
Normal file
18
modules/home/tww/dist/templates/desc.html
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
{% macro desc(task) %}
|
||||
{% if task.annotations %}
|
||||
<p>
|
||||
<strong>{{ task.description }}</strong>
|
||||
</p>
|
||||
<ul class="pl-4 text-sm">
|
||||
{% for annotation in task.annotations %}
|
||||
<li class="list-outside">
|
||||
[{{date(date=annotation.entry) }}] {{ annotation.description }}
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% else %}
|
||||
<p>
|
||||
{{ task.description }}
|
||||
</p>
|
||||
{% endif %}
|
||||
{% endmacro desc %}
|
Loading…
Add table
Add a link
Reference in a new issue