2025-11-30 16:24:49 +05:30
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
2025-12-04 17:31:12 +05:30
|
|
|
|
2025-11-30 16:24:49 +05:30
|
|
|
<head>
|
|
|
|
|
<title>Update ITAT Record</title>
|
|
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='index.css') }}">
|
|
|
|
|
</head>
|
2025-12-04 17:31:12 +05:30
|
|
|
|
2025-11-30 16:24:49 +05:30
|
|
|
<body>
|
|
|
|
|
<div class="container">
|
2025-12-04 17:31:12 +05:30
|
|
|
<!-- Back to Dashboard Button -->
|
|
|
|
|
<a href="{{ url_for('index') }}" class="back-btn">← Back to Dashboard</a>
|
|
|
|
|
|
2025-11-30 16:24:49 +05:30
|
|
|
<h2>Update ITAT Record for Year {{ record.year }}</h2>
|
|
|
|
|
<form method="POST" action="{{ url_for('update_itat', id=record.id) }}">
|
|
|
|
|
<label>Year:</label>
|
|
|
|
|
<input type="number" name="year" step="1" value="{{ record.year }}" required>
|
|
|
|
|
|
|
|
|
|
<label>MAT Tax Credit:</label>
|
|
|
|
|
<input type="number" name="mat_tax_credit" step="0.01" value="{{ record.mat_tax_credit }}" required>
|
|
|
|
|
|
|
|
|
|
<label>Surcharge:</label>
|
|
|
|
|
<input type="number" name="surcharge" step="0.01" value="{{ record.surcharge }}" required>
|
|
|
|
|
|
|
|
|
|
<label>Cess:</label>
|
|
|
|
|
<input type="number" name="cess" step="0.01" value="{{ record.cess }}" required>
|
|
|
|
|
|
|
|
|
|
<label>Total Credit:</label>
|
|
|
|
|
<input type="number" name="total_credit" step="0.01" value="{{ record.total_credit }}" required>
|
|
|
|
|
|
|
|
|
|
<button type="submit">Update Record</button>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
</body>
|
2025-12-04 17:31:12 +05:30
|
|
|
|
|
|
|
|
</html>
|