{% extends 'base.html' %} {% block page_title %}Checklist Task Templates{% endblock %} {% block content %}
Back

Checklist Task Templates

These tasks are auto-added whenever a new checklist is started
Onboarding Tasks
{% for t in onboarding_tasks %}
{{ t.title }}
{{ t.category.title() }}
{% else %}
No tasks yet
{% endfor %}
Offboarding Tasks
{% for t in offboarding_tasks %}
{{ t.title }}
{{ t.category.title() }}
{% else %}
No tasks yet
{% endfor %}
{% endblock %}