Files
bio-performx/report_gen/footer.html
T
bolade 894fbbcee3 Add header and footer templates for report generation
- Created a footer template with contact information and page number.
- Created a header template displaying patient details including name, age, height, weight, and focus.
2025-09-26 21:42:02 +01:00

12 lines
417 B
HTML

<div class=" bg-black text-white px-6 py-3">
<div class="flex justify-between items-center text-sm">
<div class="flex space-x-8">
<span>contact: {{ contact_email }}</span>
<span>website: {{ website }}</span>
<span>social: {{ social }}</span>
</div>
<div class="bg-white text-black font-bold px-3 py-1 text-lg">
{{ page_number }}
</div>
</div>
</div>