{% extends "layouts/base.html" %} {% load i18n %} {% block title %}{% trans "Save as Template" %} - PX360{% endblock %} {% block content %}
{% trans "Back to Project" %}

{% trans "Save Project as Template" %}

{% trans "Create a reusable template from" %} {{ project.name }}

{% trans "Template Information" %}

{% csrf_token %}

{% trans "Give your template a descriptive name" %}

{% if user.is_px_admin %}
{% endif %}
{% trans "Cancel" %}

{% trans "Project Preview" %}

{% trans "Original Project" %}

{{ project.name }}

{% trans "Hospital" %}

{{ project.hospital.name }}

{% if project.department %}
{% trans "Department" %}

{{ project.department.name }}

{% endif %}
{% trans "Tasks to Include" %}

{{ project.tasks.count }} {% trans "task(s)" %}

{% if project.tasks.exists %}

{% trans "Tasks that will be copied" %}

    {% for task in project.tasks.all %}
  • {{ task.title }}

    {% if task.description %}

    {{ task.description|truncatechars:60 }}

    {% endif %}
  • {% endfor %}
{% endif %}
{% endblock %}