Kaynağa Gözat

Changed check to cross off

DeadTOm 1 hafta önce
ebeveyn
işleme
56a2f2a0fc
1 değiştirilmiş dosya ile 2 ekleme ve 2 silme
  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 %}