Files
IncomeTaxSystem/templates/update_itat.html

41 lines
1.4 KiB
HTML
Raw Normal View History

{% 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 %}
<div class="container">
<h2>Update ITAT Record for Year {{ record.year }}</h2>
<form method="POST" action="{{ url_for('update_itat', id=record.id) }}">
2025-11-30 16:24:49 +05:30
<label>Year:</label>
<input type="number" name="year" step="1" value="{{ record.year }}" readonly>
2025-11-30 16:24:49 +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
<label>Surcharge:</label>
<input type="number" name="surcharge" step="0.01" value="{{ record.surcharge }}" required>
2025-11-30 16:24:49 +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
<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>
{% 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 %}