progress
This commit is contained in:
@@ -1,9 +1,10 @@
|
|||||||
{% extends 'base.html' %}
|
{% extends 'base.html' %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
<div class="h-[90vh] flex flex-col">
|
||||||
<h1 class="text-xl font-semibold mb-4">Projects for {{ case_email }}</h1>
|
<h1 class="text-xl font-semibold mb-4">Projects for {{ case_email }}</h1>
|
||||||
<div class="bg-white shadow rounded-2xl overflow-scroll">
|
<div class="m-4 w-full flex-grow overflow-scroll">
|
||||||
<table class="w-full">
|
<table class="w-full whitespace-nowrap">
|
||||||
<thead class="bg-slate-100 text-left text-sm">
|
<thead class="bg-slate-100 text-left text-sm sticky top-0 z-10">
|
||||||
<tr>
|
<tr>
|
||||||
<th class="px-4 py-3">Matter Num</th>
|
<th class="px-4 py-3">Matter Num</th>
|
||||||
<th class="px-4 py-3">Client / Property</th>
|
<th class="px-4 py-3">Client / Property</th>
|
||||||
@@ -132,7 +133,6 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Modal for completed tasks -->
|
|
||||||
<div x-show="showCompletedModal"
|
<div x-show="showCompletedModal"
|
||||||
x-transition
|
x-transition
|
||||||
class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50"
|
class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50"
|
||||||
@@ -168,7 +168,6 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Modal for pending tasks -->
|
|
||||||
<div x-show="showPendingModal"
|
<div x-show="showPendingModal"
|
||||||
x-transition
|
x-transition
|
||||||
class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50"
|
class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50"
|
||||||
@@ -194,7 +193,7 @@
|
|||||||
<td class="px-4 py-3 text-sm">{{ r.notice_service_date }}</td>
|
<td class="px-4 py-3 text-sm">{{ r.notice_service_date }}</td>
|
||||||
<td class="px-4 py-3 text-sm">{{ r.notice_expiration_date }}</td>
|
<td class="px-4 py-3 text-sm">{{ r.notice_expiration_date }}</td>
|
||||||
<td class="px-4 py-3 text-sm"></td>
|
<td class="px-4 py-3 text-sm"></td>
|
||||||
<td class="px-4 py-3 text-sm">{{ r.daily_rent_damages }}</td>
|
<td class="px-4 py-3 text-sm">{% if r.daily_rent_damages %}${{ "{:,.2f}".format(r.daily_rent_damages) }}{% endif %}</td>
|
||||||
<td class="px-4 py-3 text-sm">{{ r.default_date }}</td>
|
<td class="px-4 py-3 text-sm">{{ r.default_date }}</td>
|
||||||
<td class="px-4 py-3 text-sm">{{ r.default_entered_on_date }}</td>
|
<td class="px-4 py-3 text-sm">{{ r.default_entered_on_date }}</td>
|
||||||
<td class="px-4 py-3 text-sm"></td>
|
<td class="px-4 py-3 text-sm"></td>
|
||||||
@@ -233,4 +232,7 @@
|
|||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
<!--
|
||||||
|
<div class="bg-white shadow rounded-2xl overflow-scroll">
|
||||||
|
-->
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
Reference in New Issue
Block a user