{% extends 'base_app.html' %} {% load crispy_forms_tags %} {% block title %} HSAS - New Task {% endblock %} {% block content %}
Tasks
{% if task_list %} {% for task in task_list %} {% endfor %}
Task Name Task Date
{{ task.verbose_name }} {{ task.run_at }}
{% else %}

You currently have no tasks created.

{% endif %} Create New Task
{% endblock %}