{% extends 'main/base.html' %} {% load static %} {% load i18n %} {% load mathfilters %} {% block title %} {% if request.GET.search %} {{ request.resolver_match.kwargs.search_treatment }} {% trans "in" %} {% if request.resolver_match.kwargs.search_country %} {{ request.resolver_match.kwargs.search_country }} {% else %} {% trans "all countries" %} {% endif %}, {% trans "compare prices" %} - Mytripmed {% else %} Treatments, Clinics, Destinations {% endif %} {% endblock title %} {% block description %} {{ request.resolver_match.kwargs.search_treatment }} {% trans "in" %} {% if request.resolver_match.kwargs.search_country %} {{ request.resolver_match.kwargs.search_country }} {% else %} {% trans "all countries" %} {% endif %} - {% trans "Compare prices of doctors and clinics, read real patient reviews and book an appointment online for your" %} {{ request.resolver_match.kwargs.search_treatment }} {% endblock description %} {% block body %}
{% if request.GET.search %}

{{ request.resolver_match.kwargs.search_treatment }} {% trans "in" %} {% if request.resolver_match.kwargs.search_country %} {{ request.resolver_match.kwargs.search_country }} {% else %} {% trans "all countries" %} {% endif %}

{% trans "All" %} {{ paginator.count }} {{ request.GET.query }} {% if request.resolver_match.kwargs.search_country %} {% trans "Clinics in" %} {{ request.resolver_match.kwargs.search_country }} {% else %} {% trans "Clinics found." %} {% endif %}

{% endif %}
{% trans "filters" %}
sort-icon
{% if all_treatments|length == 0 %}

No Treatments found

{% else %}
{% for treatment in all_treatments %}
#

{{ treatment.clinic.name }}

clinic location {{ treatment.clinic.city }}, {{ treatment.clinic.country }}
{{ treatment.clinic.get_avg_rating }}

{{ treatment.short_desc }}

{% if treatment.package_info_1 %}
{{ treatment.package_info_1 }}
{% endif %} {% if treatment.package_info_2 %}
{{ treatment.package_info_2 }}
{% endif %} {% if treatment.package_info_3 %}
{{ treatment.package_info_3 }}
{% endif %} {% if treatment.package_info_4 %}
{{ treatment.package_info_4 }}
{% endif %}
{% endfor %}
{% endif %}
{% endblock body %}