add auto-calculation of Itr and Ao form and also back-to dashboard button commit

This commit is contained in:
2025-12-04 17:31:12 +05:30
parent dd339070ab
commit 4fce58adec
29 changed files with 1387 additions and 314 deletions

View File

@@ -1,5 +1,6 @@
<!DOCTYPE html>
<html>
<head>
<title>Reports Of Stages</title>
<link rel="stylesheet" href="{{ url_for('static', filename='index.css') }}">
@@ -17,7 +18,7 @@
padding: 30px;
background-color: white;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
h2 {
@@ -65,7 +66,9 @@
margin-top: 20px;
}
table, th, td {
table,
th,
td {
border: 1px solid #ccc;
}
@@ -108,23 +111,44 @@
}
ul li a:hover {
text-decorat
text-decoration: none;
}
.back-btn {
display: inline-block;
margin-bottom: 20px;
padding: 10px 18px;
background: #6c757d;
color: white;
font-size: 15px;
font-weight: 600;
border-radius: 6px;
text-decoration: none;
transition: background 0.3s ease;
}
.back-btn:hover {
background: #5a6268;
}
</style>
</head>
<body>
<div class="container">
<!-- Back to Dashboard Button -->
<a href="{{ url_for('index') }}" class="back-btn">← Back to Dashboard</a>
<h2>Reports</h2>
<ul>
<li><a href="/itr_report" >→ View ITR Reports</a></li>
<li><a href="/ao_report" >→ View AO Reports</a></li>
<li><a href="/cit_report" >→ View CIT Reports</a></li>
<li><a href="/itat_report" >→ View ITAT Reports</a></li>
</ul>
<ul>
<li><a href="/itr_report">→ View ITR Reports</a></li>
<li><a href="/ao_report">→ View AO Reports</a></li>
<li><a href="/cit_report">→ View CIT Reports</a></li>
<li><a href="/itat_report">→ View ITAT Reports</a></li>
</ul>
</div>
</body>
</html>
</html>