Преглед на файлове

Changed check to cross off

DeadTOm преди 1 седмица
родител
ревизия
56a2f2a0fc
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  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 %}