This commit is contained in:
2025-11-07 10:02:33 -08:00
parent 1ad8c988de
commit 30c5613937
4 changed files with 70 additions and 33 deletions

View File

@@ -1,10 +1,12 @@
{% extends 'base.html' %}
{% block content %}
<div class="h-[80vh] flex flex-col m-4">
<h1 class="text-xl font-semibold mb-4">Projects for {{ case_email }}</h1>
<div class=" w-full flex-grow overflow-scroll rounded-2xl overflow-hidden">
<div class="h-full flex flex-col">
<h1 class="text-xl font-semibold mb-4">Projects for {{ case_email }}</h1>
<div class="overflow-scroll">
<table class="w-full whitespace-nowrap shadow-md border border-slate-200">
<thead class="bg-gradient-to-r from-blue-600 to-blue-700 text-left text-sm sticky top-0 z-10 border-b border-blue-800 text-white font-medium">
<thead class=" text-left text-sm sticky top-0 z-10 border-b border-blue-800 text-white font-medium"
style="background-color: rgb(89, 121, 142);">
<tr>
<th class="px-4 py-3">Matter Num</th>
<th class="px-4 py-3">Client / Property</th>
@@ -235,7 +237,11 @@
</tbody>
</table>
</div>
</div>
<!--
<div class="bg-white shadow rounded-2xl overflow-scroll">
<div class="flex flex-col m-4">
<div class=" w-full flex-grow overflow-scroll rounded-2xl overflow-hidden">
</div>
-->
{% endblock %}