{% extends 'base.html' %} {% block title %}Tasks - QuikUI Example{% endblock %} {% block content %}
{# Create Task Form #}

Create New Task

{# Demo note for error handling - errors will replace this entire box #}
Try the error handling:
  • Leave title empty to see a standard validation error
  • Enter "error" as title to see a custom templated error
  • Enter a description > 64 characters to see a Pydantic validation error
  • Try to delete an "In Progress" task to see a toast notification
{# Task List #}

Tasks

{% if tasks %} {{ tasks|variant("table") }} {% else %} {% endif %}
Title Description Status Actions
No tasks yet. Create one above!
{% endblock %}