{% extends "layout.html" %} {% import 'macros.html' as macros %} {% block title %}Tasks - TWWeb{% endblock %} {% block content %}
{% for task_row in tasks | batch(3) %}
{% for task in task_row %}

{{ task.description|urlize }}

{% endfor %}
{% endfor %} {% endblock content %}