Advertisement
rezamalik15

Untitled

May 24th, 2024
437
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.34 KB | None | 0 0
  1. {% if item.status %}
  2.  
  3.     <p class="my-auto">
  4.         <del>{{ item.text }}</del>
  5.     </p>
  6.     <a href="{% url 'todo-update' item.id %}" class="btn btn-outline-primary">Redo</a>
  7.  
  8. {% else %}
  9.  
  10.     <p class="my-auto">{{ item.text }}</p>
  11.     <a href="{% url 'todo-update' item.id %}" class="btn btn-outline-secondary">Done</a>
  12.  
  13. {% endif %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement