{% extends 'main/base.html' %} {% load static %} {% load i18n %} {% block title %}{{ clinic_data.name }} {% trans "in" %} {{ clinic_data.country }}{% endblock title %} {% block description %} {{ clinic_data.name }} {% trans "in" %} {{ clinic_data.city }}, {{ clinic_data.country }}, {% trans "offers a wide range of medical treatments" %}, {% for random_treatment in random_treatments %} {{ random_treatment }} {% endfor %} {% endblock description %} {% block body %}

{{clinic_data.name}}

clinic location {{clinic_data.city}}, {{clinic_data.country}}
clinic location

{{clinic_data.get_avg_rating}}

{% trans "Average Rating" %}

clinic location

{{clinic_data.count_reviews}} {% trans "Review(s)" %}

{% trans "Given" %}

clinic location

{{clinic_data.count_doctors}} {% trans "Doctor(s)" %}

{% trans "Available" %}

#

{% trans "About Clinic" %}

{{clinic_data.description}}

{{clinic_data.about}}

{% trans "Photos" %}

{% trans "facilities photos" %}
{% if clinic_data.allimagesafter.all %}
{% trans "before/after photos" %}
{% endif %}
{% if clinic_data.count_doctors > 0 %}

{{clinic_data.count_doctors}} {% trans "Doctors Available" %}

{% for doctor in clinic_data.get_doctors %}
{% if doctor.image %} doctor image {% endif %}
{{doctor.name}}

{{doctor.description}}

{% endfor %}
{% endif %} {% if clinic_data.allcertificatesforclinic.all %}

{% trans "Clinic Certifications" %}

{% for certificate in clinic_data.allcertificatesforclinic.all %}
{{certificate.certificates.name}}
{% endfor %}
{% endif %}

{% trans "Clinic Reviews" %}

{% for review in clinic_data.get_reviews %}
{{review.name}}

{{review.created}}

{{review.avg_review_rating}} {% trans "stars" %}

{{review.review}}

{% endfor %}

{% trans "Read real reviews from real patients of" %} {{clinic_data.name}}, {% trans "in" %} {{clinic_data.city}}, {{clinic_data.country.name}}. {{clinic_data.name}} {% trans "has achieved a star rating of" %} {{clinic_data.get_avg_rating}} {% trans "based on" %} {{clinic_data.count_reviews}} {% trans "reviews" %}.

{% trans "If you are a past patient of" %} {{clinic_data.name}} {% trans "please click the 'write review' button to provide your review for others to read. Writing a review will only take 2 minutes to complete" %}.

{% trans "If you have any other questions, you can" %} {% trans "contact us" %} {% trans "free of charge" %}

{% endblock body %}