Ver 9.2 Calendar Fixed

This commit is contained in:
Flatlogic Bot 2026-02-04 01:03:48 +00:00
parent 06d5101e39
commit ee87ae82bf

View File

@ -95,8 +95,10 @@
<div class="container mb-5 mt-n4">
{% if view_mode == 'calendar' %}
<!-- CALENDAR VIEW -->
<div class="d-flex justify-content-between align-items-center mb-3">
<h3 class="mb-0 fw-bold">{{ month_name }} {{ curr_year }}</h3>
<div class="card shadow-sm border-0">
<div class="card-header bg-white py-3 border-bottom">
<div class="d-flex justify-content-between align-items-center">
<h3 class="mb-0 fw-bold text-dark">{{ month_name }} {{ curr_year }}</h3>
<div class="btn-group shadow-sm">
<a href="?view=calendar&month={{ prev_month }}&year={{ prev_year }}&worker={{ selected_worker|default:'' }}&team={{ selected_team|default:'' }}&project={{ selected_project|default:'' }}&payment_status={{ selected_payment_status|default:'' }}" class="btn btn-light border bg-white">
<i class="bi bi-chevron-left"></i> Previous
@ -106,8 +108,7 @@
</a>
</div>
</div>
<div class="card shadow-sm border-0">
</div>
<div class="card-body p-0">
<div class="table-responsive">
<table class="table table-bordered mb-0 calendar-table" style="table-layout: fixed;">
@ -153,9 +154,6 @@
{{ log.workers.count }} workers
{% endif %}
</div>
{% if log.notes %}
<!-- Optional: indicator for notes -->
{% endif %}
</div>
{% endfor %}
</div>