Prepare ERP source for Gitea deployment

This commit is contained in:
A R R R Associates
2026-06-20 15:01:44 +05:30
commit 5c75eb6bd9
450 changed files with 67698 additions and 0 deletions
@@ -0,0 +1,92 @@
{% extends "ui/templates/base/layout.html" %}
{% block content %}
<div class="space-y-6">
<div class="flex flex-col gap-4 md:flex-row md:items-center md:justify-between">
<div>
<h2 class="text-2xl font-semibold text-slate-900">{{ row.client_name }}</h2>
<p class="text-sm text-slate-500">{{ row.client_code }} • {{ row.client_type }} • {{ row.status|title }}</p>
</div>
<div class="flex flex-wrap gap-3">
{% if can_edit %}
<a href="/clients/{{ row.id }}/edit"
class="rounded-xl border border-slate-300 px-4 py-2 text-sm font-medium text-slate-700 hover:bg-slate-50">
Edit
</a>
{% endif %}
{% if can_activate and row.status != 'active' and row.status != 'archived' %}
<form method="post" action="/clients/{{ row.id }}/activate">
<input type="hidden" name="csrf_token" value="{{ csrf_token }}">
<button class="rounded-xl border border-emerald-300 px-4 py-2 text-sm font-medium text-emerald-700 hover:bg-emerald-50">
Activate
</button>
</form>
{% endif %}
{% if can_deactivate and row.status == 'active' %}
<form method="post" action="/clients/{{ row.id }}/deactivate">
<input type="hidden" name="csrf_token" value="{{ csrf_token }}">
<button class="rounded-xl border border-rose-300 px-4 py-2 text-sm font-medium text-rose-700 hover:bg-rose-50">
Deactivate
</button>
</form>
{% endif %}
{% if can_archive and row.status != 'archived' %}
<form method="post" action="/clients/{{ row.id }}/archive">
<input type="hidden" name="csrf_token" value="{{ csrf_token }}">
<button class="rounded-xl border border-amber-300 px-4 py-2 text-sm font-medium text-amber-800 hover:bg-amber-50">
Archive
</button>
</form>
{% endif %}
{% if can_restore and row.status == 'archived' %}
<form method="post" action="/clients/{{ row.id }}/restore">
<input type="hidden" name="csrf_token" value="{{ csrf_token }}">
<button class="rounded-xl border border-sky-300 px-4 py-2 text-sm font-medium text-sky-700 hover:bg-sky-50">
Restore
</button>
</form>
{% endif %}
</div>
</div>
<div class="grid gap-6 xl:grid-cols-3">
<section class="rounded-2xl bg-white p-6 shadow-soft xl:col-span-2">
<h3 class="text-base font-semibold text-slate-900">Profile</h3>
<div class="mt-4 grid gap-4 md:grid-cols-2">
{% for label, value in [
('Trade Name', row.trade_name),
('PAN', row.pan),
('GSTIN', row.gstin),
('TAN', row.tan),
('Contact Person', row.contact_person_name),
('Designation', row.contact_person_designation),
('Mobile', row.mobile),
('Email', row.email)
] %}
<div class="rounded-xl border border-slate-200 px-4 py-3">
<div class="text-xs font-semibold uppercase tracking-wide text-slate-500">{{ label }}</div>
<div class="mt-1 text-sm text-slate-800">{{ value or '-' }}</div>
</div>
{% endfor %}
</div>
</section>
<section class="rounded-2xl bg-white p-6 shadow-soft">
<h3 class="text-base font-semibold text-slate-900">Association</h3>
<div class="mt-4 space-y-2 text-sm text-slate-700">
<div><span class="font-medium">Type:</span> {{ row.association_type or 'legacy_firm' }}</div>
<div><span class="font-medium">Source:</span> {{ row.assoc_created_source or 'legacy' }}</div>
<div><span class="font-medium">Audit Firm:</span> {{ row.assoc_firm_tenant_id or row.tenant_id or '-' }}</div>
<div><span class="font-medium">Branch:</span> {{ row.branch_id or '-' }}</div>
<div><span class="font-medium">Partner:</span> {{ row.assoc_partner_user_id or row.partner_id or '-' }}</div>
<div><span class="font-medium">Default Review Partner:</span> {{ row.default_review_partner_user_id or '-' }}</div>
<div><span class="font-medium">Consultant:</span> {{ row.assoc_consultant_id or '-' }}</div>
</div>
</section>
</div>
</div>
{% endblock %}