{% extends "base.html" %} {% if task.done == True %} {% set textColor = "color: grey;" %} {% else %} {% set textColor = "color: white;" %} {% endif %} {% block content %}

Actions For {{ task.content[0:10] }}...

{% if task.can_move_top == True %} {% endif %} {% if task.can_move_up == True %} {% endif %} {% if task.can_move_down == True %} {% endif %} {% if task.can_move_end == True %} {% endif %} {% endblock %}