2025-12-29 15:22:15 +05:30
|
|
|
{% extends "base.html" %}
|
|
|
|
|
{% block title %}Update ITAT Record{% endblock %}
|
|
|
|
|
{% block extra_css %}
|
|
|
|
|
<!-- Child page CSS -->
|
|
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/add_itat.css') }}">
|
|
|
|
|
{% endblock %}
|
|
|
|
|
{% block content %}
|
2025-12-04 17:31:12 +05:30
|
|
|
|
2025-12-29 15:22:15 +05:30
|
|
|
<div class="container">
|
2025-12-04 17:31:12 +05:30
|
|
|
|
2025-12-29 15:22:15 +05:30
|
|
|
<h2>Update ITAT Record for Year {{ record.year }}</h2>
|
2025-12-04 17:31:12 +05:30
|
|
|
|
2025-12-29 15:22:15 +05:30
|
|
|
<form method="POST" action="{{ url_for('update_itat', id=record.id) }}">
|
2025-11-30 16:24:49 +05:30
|
|
|
|
2025-12-29 15:22:15 +05:30
|
|
|
<label>Year:</label>
|
|
|
|
|
<input type="number" name="year" step="1" value="{{ record.year }}" readonly>
|
2025-11-30 16:24:49 +05:30
|
|
|
|
2025-12-29 15:22:15 +05:30
|
|
|
<label>MAT Tax Credit:</label>
|
|
|
|
|
<input type="number" name="mat_tax_credit" step="0.01" value="{{ record.mat_tax_credit }}" required>
|
2025-11-30 16:24:49 +05:30
|
|
|
|
2025-12-29 15:22:15 +05:30
|
|
|
<label>Surcharge:</label>
|
|
|
|
|
<input type="number" name="surcharge" step="0.01" value="{{ record.surcharge }}" required>
|
2025-11-30 16:24:49 +05:30
|
|
|
|
2025-12-29 15:22:15 +05:30
|
|
|
<label>Cess:</label>
|
|
|
|
|
<input type="number" name="cess" step="0.01" value="{{ record.cess }}" required>
|
2025-11-30 16:24:49 +05:30
|
|
|
|
2025-12-29 15:22:15 +05:30
|
|
|
<label>Total Credit:</label>
|
|
|
|
|
<input type="number" name="total_credit" step="0.01" value="{{ record.total_credit }}" required>
|
2025-12-04 17:31:12 +05:30
|
|
|
|
2025-12-29 15:22:15 +05:30
|
|
|
<button type="submit">Update Record</button>
|
|
|
|
|
</form>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block extra_js %}
|
|
|
|
|
<script src="{{ url_for('static', filename='js/toggle.js') }}"></script>
|
|
|
|
|
<script src="{{ url_for('static', filename='js/cit_calc.js') }}"></script>
|
|
|
|
|
<script src="{{ url_for('static', filename='js/year_dropdown.js') }}"></script>
|
|
|
|
|
{% endblock %}
|