|
@@ -52,12 +52,12 @@
|
|
{% if item.checked == 'no' %}
|
|
{% if item.checked == 'no' %}
|
|
<li style="text-decoration:none;">
|
|
<li style="text-decoration:none;">
|
|
{{ item.name }}
|
|
{{ item.name }}
|
|
- <a href="{{ url_for('checklist.check', item_id=loop.index0) }}">[Check]</a>
|
|
|
|
|
|
+ <a href="{{ url_for('checklist.check', item_id=loop.index0) }}">[Cross Off]</a>
|
|
</li>
|
|
</li>
|
|
{% else %}
|
|
{% else %}
|
|
<li> <span style="text-decoration:line-through;">
|
|
<li> <span style="text-decoration:line-through;">
|
|
{{ item.name }}</span>
|
|
{{ item.name }}</span>
|
|
- <a href="{{ url_for('checklist.uncheck', item_id=loop.index0) }}">[Un-check]</a>
|
|
|
|
|
|
+ <a href="{{ url_for('checklist.uncheck', item_id=loop.index0) }}">[Un-Cross]</a>
|
|
</li>
|
|
</li>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endfor %}
|