{% 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 %}