Files
IncomeTaxSystem/templates/summary_reports.html

35 lines
1.0 KiB
HTML
Raw Permalink Normal View History

{% extends "base.html" %} {% block title %}Download Summary Report{% endblock %}
{% block extra_css %}
<link rel="stylesheet" href="{{ url_for('static', filename='css/summary.css') }}" />
2026-02-09 11:23:36 +05:30
{% endblock %} {% block content %}
2026-01-29 18:19:49 +05:30
<div class="container">
<div class="head">
2026-01-29 18:19:49 +05:30
<h2>Download Year-wise Summary Report</h2>
{% if message %}
<p class="message">{{ message }}</p>
{% endif %}
<div class="select-download-wrapper">
<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
<a id="downloadBtn" href="#">Download Summary Report</a>
</div>
</div>
2026-01-29 18:19:49 +05:30
<!-- Preview Section -->
<div id="preview" style="display: none">
<h3>Summary Preview</h3>
<div id="previewContent"></div>
</div>
</div>
{% endblock %} {% block extra_js %}
<script src="{{ url_for('static', filename='js/summary_preview.js') }}"></script>
2026-01-07 00:49:42 +05:30
{% endblock %}