328 lines
15 KiB
HTML
328 lines
15 KiB
HTML
{% extends "layouts/base.html" %}
|
|
{% load i18n %}
|
|
{% load static %}
|
|
|
|
{% block title %}{% trans "Individual Doctor Ratings" %} - PX360{% endblock %}
|
|
|
|
{% block extra_css %}
|
|
<style>
|
|
.rating-row {
|
|
transition: all 0.2s ease;
|
|
border-left: 3px solid transparent;
|
|
}
|
|
.rating-row:hover {
|
|
background: #f8fafc;
|
|
border-left-color: #007bbd;
|
|
transform: translateX(2px);
|
|
}
|
|
.table-card {
|
|
transition: box-shadow 0.2s ease;
|
|
}
|
|
.table-card:hover {
|
|
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
|
|
}
|
|
.field-label {
|
|
font-size: 10px;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
color: #64748b;
|
|
}
|
|
</style>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="p-8">
|
|
<!-- Header -->
|
|
<header class="mb-8">
|
|
<div class="flex items-center justify-between">
|
|
<div>
|
|
<h1 class="text-2xl font-bold text-navy flex items-center gap-3">
|
|
<div class="w-10 h-10 bg-yellow-100 rounded-xl flex items-center justify-center">
|
|
<i data-lucide="star" class="w-5 h-5 text-yellow-600"></i>
|
|
</div>
|
|
{% trans "Individual Ratings" %}
|
|
</h1>
|
|
<p class="text-slate mt-2 text-sm">{% trans "View and filter individual doctor ratings" %}</p>
|
|
</div>
|
|
<div class="flex items-center gap-2">
|
|
<a href="{% url 'physicians:doctor_rating_import' %}"
|
|
class="px-4 py-2.5 border border-blue/30 text-blue rounded-xl font-semibold hover:bg-blue/5 transition flex items-center gap-2">
|
|
<i data-lucide="upload" class="w-4 h-4"></i>
|
|
{% trans "Import Ratings" %}
|
|
</a>
|
|
<a href="{% url 'physicians:doctor_rating_job_list' %}"
|
|
class="px-4 py-2.5 border border-slate-200 text-slate rounded-xl font-semibold hover:bg-slate-50 hover:border-slate-300 transition flex items-center gap-2">
|
|
<i data-lucide="clock-history" class="w-4 h-4"></i>
|
|
{% trans "Import History" %}
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
|
|
<!-- Filters -->
|
|
<section class="bg-white rounded-2xl p-6 shadow-sm border border-slate-100 mb-6">
|
|
<form method="get" class="grid grid-cols-1 md:grid-cols-3 lg:grid-cols-4 gap-4">
|
|
<div>
|
|
<label class="field-label">{% trans "Hospital" %}</label>
|
|
<select name="hospital" class="w-full px-4 py-2.5 border border-slate-200 rounded-xl text-sm focus:ring-2 focus:ring-navy/20 focus:border-navy outline-none transition">
|
|
<option value="">{% trans "All Hospitals" %}</option>
|
|
{% for hospital in hospitals %}
|
|
<option value="{{ hospital.id }}" {% if filters.hospital == hospital.id|stringformat:"s" %}selected{% endif %}>
|
|
{{ hospital.name }}
|
|
</option>
|
|
{% endfor %}
|
|
</select>
|
|
</div>
|
|
|
|
<div>
|
|
<label class="field-label">{% trans "Doctor ID" %}</label>
|
|
<input type="text" name="doctor_id"
|
|
value="{{ filters.doctor_id|default:'' }}"
|
|
class="w-full px-4 py-2.5 border border-slate-200 rounded-xl text-sm focus:ring-2 focus:ring-navy/20 focus:border-navy outline-none transition"
|
|
placeholder="{% trans 'e.g., 10738' %}">
|
|
</div>
|
|
|
|
<div>
|
|
<label class="field-label">{% trans "Min Rating" %}</label>
|
|
<select name="rating_min" class="w-full px-4 py-2.5 border border-slate-200 rounded-xl text-sm focus:ring-2 focus:ring-navy/20 focus:border-navy outline-none transition">
|
|
<option value="">{% trans "Any" %}</option>
|
|
{% for i in "12345" %}
|
|
<option value="{{ i }}" {% if filters.rating_min == i %}selected{% endif %}>{{ i }}</option>
|
|
{% endfor %}
|
|
</select>
|
|
</div>
|
|
|
|
<div>
|
|
<label class="field-label">{% trans "Max Rating" %}</label>
|
|
<select name="rating_max" class="w-full px-4 py-2.5 border border-slate-200 rounded-xl text-sm focus:ring-2 focus:ring-navy/20 focus:border-navy outline-none transition">
|
|
<option value="">{% trans "Any" %}</option>
|
|
{% for i in "12345" %}
|
|
<option value="{{ i }}" {% if filters.rating_max == i %}selected{% endif %}>{{ i }}</option>
|
|
{% endfor %}
|
|
</select>
|
|
</div>
|
|
|
|
<div>
|
|
<label class="field-label">{% trans "From Date" %}</label>
|
|
<input type="date" name="date_from"
|
|
value="{{ filters.date_from|default:'' }}"
|
|
class="w-full px-4 py-2.5 border border-slate-200 rounded-xl text-sm focus:ring-2 focus:ring-navy/20 focus:border-navy outline-none transition">
|
|
</div>
|
|
|
|
<div>
|
|
<label class="field-label">{% trans "To Date" %}</label>
|
|
<input type="date" name="date_to"
|
|
value="{{ filters.date_to|default:'' }}"
|
|
class="w-full px-4 py-2.5 border border-slate-200 rounded-xl text-sm focus:ring-2 focus:ring-navy/20 focus:border-navy outline-none transition">
|
|
</div>
|
|
|
|
<div>
|
|
<label class="field-label">{% trans "Source" %}</label>
|
|
<select name="source" class="w-full px-4 py-2.5 border border-slate-200 rounded-xl text-sm focus:ring-2 focus:ring-navy/20 focus:border-navy outline-none transition">
|
|
<option value="">{% trans "All Sources" %}</option>
|
|
{% for value, label in sources %}
|
|
<option value="{{ value }}" {% if filters.source == value %}selected{% endif %}>
|
|
{{ label }}
|
|
</option>
|
|
{% endfor %}
|
|
</select>
|
|
</div>
|
|
|
|
<div class="flex items-end gap-2">
|
|
<button type="submit" class="flex-1 px-6 py-2.5 bg-navy text-white rounded-xl font-semibold shadow-md hover:bg-blue transition flex items-center justify-center gap-2">
|
|
<i data-lucide="search" class="w-4 h-4"></i>
|
|
{% trans "Filter" %}
|
|
</button>
|
|
<a href="{% url 'physicians:individual_ratings_list' %}" class="flex-1 px-6 py-2.5 border border-slate-200 text-slate rounded-xl font-semibold hover:bg-slate-50 hover:border-slate-300 transition flex items-center justify-center gap-2">
|
|
<i data-lucide="x-circle" class="w-4 h-4"></i>
|
|
{% trans "Clear" %}
|
|
</a>
|
|
</div>
|
|
</form>
|
|
</section>
|
|
|
|
|
|
<!-- Ratings Table -->
|
|
<section class="bg-white rounded-2xl shadow-sm border border-slate-100 table-card">
|
|
<div class="overflow-x-auto">
|
|
<table class="w-full">
|
|
<thead>
|
|
<tr class="bg-slate-50 border-b border-slate-200">
|
|
<th class="p-4 text-left font-bold text-navy text-xs uppercase tracking-wider">{% trans "Date" %}</th>
|
|
<th class="p-4 text-left font-bold text-navy text-xs uppercase tracking-wider">{% trans "Doctor" %}</th>
|
|
<th class="p-4 text-left font-bold text-navy text-xs uppercase tracking-wider">{% trans "Patient" %}</th>
|
|
<th class="p-4 text-left font-bold text-navy text-xs uppercase tracking-wider">{% trans "Rating" %}</th>
|
|
<th class="p-4 text-left font-bold text-navy text-xs uppercase tracking-wider">{% trans "Department" %}</th>
|
|
<th class="p-4 text-left font-bold text-navy text-xs uppercase tracking-wider">{% trans "Source" %}</th>
|
|
<th class="p-4 text-center font-bold text-navy text-xs uppercase tracking-wider">{% trans "Matched" %}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody class="divide-y divide-slate-100">
|
|
{% for rating in page_obj %}
|
|
<tr class="rating-row">
|
|
<td class="p-4">
|
|
<div class="text-sm font-medium text-navy">{{ rating.rating_date|date:"Y-m-d" }}</div>
|
|
<div class="text-xs text-slate">{{ rating.rating_date|date:"H:i" }}</div>
|
|
</td>
|
|
<td class="p-4">
|
|
<div class="flex items-center gap-3">
|
|
<div class="w-8 h-8 rounded-lg bg-blue/10 flex items-center justify-center">
|
|
<i data-lucide="user" class="w-4 h-4 text-blue"></i>
|
|
</div>
|
|
<div>
|
|
<p class="font-bold text-navy text-sm">
|
|
{% if rating.staff %}
|
|
{{ rating.staff.get_full_name }}
|
|
{% else %}
|
|
{{ rating.doctor_name|default:rating.doctor_name_raw }}
|
|
{% endif %}
|
|
</p>
|
|
{% if rating.doctor_id %}
|
|
<p class="text-xs text-slate">ID: {{ rating.doctor_id }}</p>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</td>
|
|
<td class="p-4">
|
|
<div class="text-sm text-slate">{{ rating.patient_name|truncatechars:20 }}</div>
|
|
<div class="text-xs text-slate">{{ rating.patient_uhid }}</div>
|
|
</td>
|
|
<td class="p-4">
|
|
<div class="flex items-center gap-2">
|
|
{% if rating.rating >= 4 %}
|
|
<div class="flex items-center gap-1 bg-green-100 text-green-700 px-3 py-1.5 rounded-lg">
|
|
<i data-lucide="star" class="w-4 h-4 fill-green-600 text-green-600"></i>
|
|
<span class="font-bold text-sm">{{ rating.rating }}</span>
|
|
</div>
|
|
{% elif rating.rating >= 3 %}
|
|
<div class="flex items-center gap-1 bg-yellow-100 text-yellow-700 px-3 py-1.5 rounded-lg">
|
|
<i data-lucide="star" class="w-4 h-4 fill-yellow-500 text-yellow-500"></i>
|
|
<span class="font-bold text-sm">{{ rating.rating }}</span>
|
|
</div>
|
|
{% else %}
|
|
<div class="flex items-center gap-1 bg-red-100 text-red-700 px-3 py-1.5 rounded-lg">
|
|
<i data-lucide="star" class="w-4 h-4 fill-red-500 text-red-500"></i>
|
|
<span class="font-bold text-sm">{{ rating.rating }}</span>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</td>
|
|
<td class="p-4">
|
|
<div class="text-sm text-slate">{{ rating.department_name|default:"-" }}</div>
|
|
<div class="text-xs text-slate">{{ rating.hospital.name }}</div>
|
|
</td>
|
|
<td class="p-4">
|
|
{% if rating.source == 'his_api' %}
|
|
<span class="inline-flex px-3 py-1 rounded-full text-xs font-bold uppercase tracking-wider bg-blue-100 text-blue-700">
|
|
{% trans "HIS API" %}
|
|
</span>
|
|
{% elif rating.source == 'csv_import' %}
|
|
<span class="inline-flex px-3 py-1 rounded-full text-xs font-bold uppercase tracking-wider bg-slate-100 text-slate-700">
|
|
{% trans "CSV" %}
|
|
</span>
|
|
{% else %}
|
|
<span class="inline-flex px-3 py-1 rounded-full text-xs font-bold uppercase tracking-wider bg-purple-100 text-purple-700">
|
|
{% trans "Manual" %}
|
|
</span>
|
|
{% endif %}
|
|
</td>
|
|
<td class="p-4 text-center">
|
|
{% if rating.staff %}
|
|
<span class="inline-flex items-center gap-1 px-3 py-1 rounded-full text-xs font-bold uppercase tracking-wider bg-green-100 text-green-700">
|
|
<i data-lucide="check-circle" class="w-3 h-3"></i>
|
|
{% trans "Yes" %}
|
|
</span>
|
|
{% else %}
|
|
<span class="inline-flex items-center gap-1 px-3 py-1 rounded-full text-xs font-bold uppercase tracking-wider bg-yellow-100 text-yellow-700">
|
|
<i data-lucide="help-circle" class="w-3 h-3"></i>
|
|
{% trans "No" %}
|
|
</span>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
{% empty %}
|
|
<tr>
|
|
<td colspan="7" class="p-12 text-center">
|
|
<div class="flex flex-col items-center justify-center">
|
|
<div class="w-20 h-20 bg-slate-100 rounded-full flex items-center justify-center mb-4">
|
|
<i data-lucide="inbox" class="w-10 h-10 text-slate-300"></i>
|
|
</div>
|
|
<p class="text-slate font-medium mb-2">{% trans "No ratings found" %}</p>
|
|
<p class="text-slate text-sm mb-4">{% trans "Try adjusting your filters or import new ratings" %}</p>
|
|
<a href="{% url 'physicians:doctor_rating_import' %}"
|
|
class="px-6 py-2.5 bg-navy text-white rounded-xl font-semibold shadow-md hover:bg-blue transition flex items-center gap-2">
|
|
<i data-lucide="plus-circle" class="w-4 h-4"></i>
|
|
{% trans "Import Ratings" %}
|
|
</a>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
|
|
<!-- Pagination -->
|
|
{% if page_obj.has_other_pages %}
|
|
<div class="bg-slate-50 px-8 py-4 flex items-center justify-between border-t border-slate-200 rounded-b-2xl">
|
|
<div class="flex items-center gap-4">
|
|
<span class="text-xs text-slate font-medium">
|
|
{% trans "Showing" %} <span class="font-bold text-navy">{{ page_obj.start_index }}-{{ page_obj.end_index }}</span> {% trans "of" %} <span class="font-bold text-navy">{{ page_obj.paginator.count }}</span> {% trans "entries" %}
|
|
</span>
|
|
</div>
|
|
<div class="flex gap-2">
|
|
{% if page_obj.has_previous %}
|
|
<a href="?page={{ page_obj.previous_page_number }}{% for key, value in filters.items %}&{{ key }}={{ value }}{% endfor %}"
|
|
class="w-8 h-8 flex items-center justify-center rounded-lg border bg-white hover:bg-slate-50 transition">
|
|
<i data-lucide="chevron-left" class="w-4 h-4 text-slate"></i>
|
|
</a>
|
|
{% else %}
|
|
<span class="w-8 h-8 flex items-center justify-center rounded-lg border bg-slate-100 text-slate-300 cursor-not-allowed">
|
|
<i data-lucide="chevron-left" class="w-4 h-4"></i>
|
|
</span>
|
|
{% endif %}
|
|
|
|
{% for num in page_obj.paginator.page_range %}
|
|
{% if num == page_obj.number %}
|
|
<span class="w-8 h-8 flex items-center justify-center rounded-lg bg-navy text-white text-xs font-bold">{{ num }}</span>
|
|
{% elif num > page_obj.number|add:'-3' and num < page_obj.number|add:'3' %}
|
|
<a href="?page={{ num }}{% for key, value in filters.items %}&{{ key }}={{ value }}{% endfor %}"
|
|
class="w-8 h-8 flex items-center justify-center rounded-lg border bg-white hover:bg-slate-50 text-xs font-bold text-slate transition">
|
|
{{ num }}
|
|
</a>
|
|
{% elif num == 1 or num == page_obj.paginator.num_pages %}
|
|
<a href="?page={{ num }}{% for key, value in filters.items %}&{{ key }}={{ value }}{% endfor %}"
|
|
class="w-8 h-8 flex items-center justify-center rounded-lg border bg-white hover:bg-slate-50 text-xs font-bold text-slate transition">
|
|
{{ num }}
|
|
</a>
|
|
{% elif num == page_obj.number|add:'-3' or num == page_obj.number|add:'3' %}
|
|
<span class="w-8 h-8 flex items-center justify-center text-xs text-slate">...</span>
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
{% if page_obj.has_next %}
|
|
<a href="?page={{ page_obj.next_page_number }}{% for key, value in filters.items %}&{{ key }}={{ value }}{% endfor %}"
|
|
class="w-8 h-8 flex items-center justify-center rounded-lg border bg-white hover:bg-slate-50 transition">
|
|
<i data-lucide="chevron-right" class="w-4 h-4 text-slate"></i>
|
|
</a>
|
|
{% else %}
|
|
<span class="w-8 h-8 flex items-center justify-center rounded-lg border bg-slate-100 text-slate-300 cursor-not-allowed">
|
|
<i data-lucide="chevron-right" class="w-4 h-4"></i>
|
|
</span>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block extra_js %}
|
|
<script>
|
|
lucide.createIcons();
|
|
</script>
|
|
{% endblock %}
|
|
|