{% extends "base.html" %} {% load static %} {% block title %}Hospitals - RaktaPulse{% endblock %} {% block content %}

Hospitals in Kathmandu

A comprehensive list of public and private hospitals for blood requests and emergency care.

{% for hospital in hospitals %}

{{ hospital.name }}

{% if hospital.distance %} {{ hospital.distance|floatformat:1 }} km away {% endif %}

{{ hospital.location }}

{% if hospital.phone %}

{{ hospital.phone }}

{% endif %} {% if hospital.website %}

Visit Website

{% endif %} Request Blood Here
{% empty %}

No hospitals registered in the system.

{% endfor %}
{% endblock %}