|  | @@ -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 %}
 |