Files
IncomeTaxSystem/templates/summary_reports.html

32 lines
876 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block title %}Download Summary Report{% endblock %}
2025-09-18 11:33:28 +05:30
{% block extra_css %}
<!-- Optional: Add page-specific CSS -->
<link rel="stylesheet" href="{{ url_for('static', filename='css/summary.css') }}">
{% endblock %}
2025-09-18 11:33:28 +05:30
{% block content %}
2026-01-29 18:19:49 +05:30
<div class="container">
<h2>Download Year-wise Summary Report</h2>
{% if message %}
<p class="message">{{ message }}</p>
{% endif %}
<form method="GET" action="{{ url_for('summary_report') }}">
<label>Select Year:</label>
<select name="year" id="year" required>
<option value="">-- Select Year --</option>
{% for year in years %}
<option value="{{ year }}">AY {{ year }}-{{ year + 1 }}</option>
{% endfor %}
</select>
2026-01-07 17:22:18 +05:30
2026-01-29 18:19:49 +05:30
<button type="submit">Download Summary Report</button>
</form>
</div>
2026-01-07 00:49:42 +05:30
{% endblock %}