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

Journey Templates

Manage journey templates and stages

Create Journey Template
{% for template in templates %} {% empty %} {% endfor %}
{% trans "Name" %} {% trans "Journey Type" %} {% trans "Hospital" %} {% trans "Stages" %} {% trans "Status" %} {% trans "Actions" %}
{{ template.name }} {{ template.get_journey_type_display }} {{ template.hospital.name_en }} {{ template.stages.count }} stages {% if template.is_active %} Active {% else %} Inactive {% endif %}

No templates found

{% if page_obj.has_other_pages %} {% endif %}
{% for template in templates %} {% endfor %} {% endblock %}