ITR model update code

This commit is contained in:
2025-11-30 16:24:49 +05:30
parent 602c87148d
commit d9a86f41a1
33 changed files with 1790 additions and 346 deletions

View File

@@ -1,5 +1,6 @@
<!DOCTYPE html>
<html>
<head>
<title>View Documents</title>
<style>
@@ -72,7 +73,8 @@
color: white;
}
th, td {
th,
td {
padding: 12px 15px;
border: 1px solid #ddd;
text-align: center;
@@ -108,6 +110,7 @@
}
</style>
</head>
<body>
<div class="container">
<h2>Document Records</h2>
@@ -154,11 +157,13 @@
<td>{{ doc.year }}</td>
<td>{{ doc.uploaded_at }}</td>
<td><a href="{{ url_for('uploaded_file', filename=doc.filename) }}?mode=download">Download</a></td>
<td><a href="{{ url_for('uploaded_file', filename=doc.filename) }}?mode=view" target="_blank">View</a></td>
<td><a href="{{ url_for('uploaded_file', filename=doc.filename) }}?mode=view"
target="_blank">View</a></td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</body>
</html>
</html>