Parcourir la source

Changed check to cross off

DeadTOm il y a 1 semaine
Parent
commit
56a2f2a0fc
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      checklist/templates/index.html

+ 2 - 2
checklist/templates/index.html

@@ -52,12 +52,12 @@
                 {% if item.checked == 'no' %}
                     <li style="text-decoration:none;">
                         {{ 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>
                 {% else %}
                     <li> <span style="text-decoration:line-through;">
                         {{ 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>
                 {% endif %}
             {% endfor %}