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

{% trans "Survey Templates" %}

{% trans "Manage survey templates and questions" %}

{% trans "Create Survey Template" %}
{% if templates %}
{% for template in templates %} {% 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 }} {% trans "questions" %} {{ template.get_scoring_method_display }} {% if template.is_active %} {% trans "Active" %} {% else %} {% trans "Inactive" %} {% endif %}
{% if page_obj.has_other_pages %}
{% trans "Page" %} {{ page_obj.number }} {% trans "of" %} {{ page_obj.paginator.num_pages }}
{% endif %} {% else %}

{% trans "No Templates Found" %}

{% trans "Get started by creating your first survey template." %}

{% trans "Create Survey Template" %}
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}