Todo List
{% if todos == [] %}
Hər hansısa bir Todo yoxdur
{% else %}
{% endif %}
| id |
Todo Başlıq |
Status |
Status Dəyişdir |
Sil |
{% for todo in todos %}
| {{todo.id}} |
{{todo.title}} |
{% if todo.complete == False %}
Bitmədi! |
{% else %}
Bitdi |
{% endif %}
Tamamla |
Sil |
{% endfor %}