{% extends "base.html" %} {% block title %} {% if task %}Edit task{% else %}New task{% endif %} — {{ project.title }} {% endblock %} {% block extra_styles %} {% endblock %} {% block content %}
{% if errors %}
{% for e in errors %}{{ e }}{% if not loop.last %}
{% endif %}{% endfor %}
{% endif %}
Cancel
{% if task %}
Quick status change
{% for s in statuses %}
{% endfor %}
Created: {{ task.created_at.strftime('%d %b %Y, %H:%M') }} · Updated: {{ task.updated_at.strftime('%d %b %Y, %H:%M') }}
{% endif %}
{% endblock %}