{% extends "layouts/base.html" %} {% load i18n %} {% block title %}{% trans "Project Templates" %} - PX360{% endblock %} {% block content %}

{% trans "Project Templates" %}

{% trans "Reusable templates for quality improvement projects" %}

{% if templates %}
{% for template in templates %}

{{ template.name }}

{% if template.is_active %} {% trans "Active" %} {% else %} {% trans "Inactive" %} {% endif %}
{% if template.description %}

{{ template.description }}

{% endif %}
{{ template.tasks.count }} {% trans "tasks" %} {{ template.created_at|date:"M d, Y" }}
{% endfor %}
{% else %}

{% trans "No Templates Yet" %}

{% trans "Create templates to quickly start new quality improvement projects" %}

{% if can_create %} {% trans "Create First Template" %} {% endif %}
{% endif %} {% endblock %}