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

Survey Templates

Manage survey templates and questions

{% for template in templates %} {% empty %} {% endfor %}
{% trans "Name" %} {% trans "Survey Type" %} {% trans "Hospital" %} {% trans "Questions" %} {% trans "Scoring" %} {% trans "Status" %} {% trans "Actions" %}
{{ template.name }} {{ template.get_survey_type_display }} {{ template.hospital.name_en }} {{ template.questions.count }} questions {{ template.get_scoring_method_display }} {% if template.is_active %} Active {% else %} Inactive {% endif %} View Instances

No templates found

{% if page_obj.has_other_pages %} {% endif %}
{% endblock %}