2025-12-29 15:22:15 +05:30
|
|
|
{% extends "base.html" %}
|
2025-12-04 17:31:12 +05:30
|
|
|
|
2025-12-29 15:22:15 +05:30
|
|
|
{% block title %}Download Summary Report{% endblock %}
|
2025-09-18 11:33:28 +05:30
|
|
|
|
2025-12-29 15:22:15 +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
|
|
|
|
2025-12-29 15:22:15 +05:30
|
|
|
{% block content %}
|
|
|
|
|
<div class="main">
|
2025-09-18 11:33:28 +05:30
|
|
|
<div class="container">
|
2025-12-29 15:22:15 +05:30
|
|
|
|
|
|
|
|
<!-- <a href="{{ url_for('index') }}" class="back-btn">← Back to Dashboard</a>-->
|
2025-12-04 17:31:12 +05:30
|
|
|
|
2025-09-18 11:33:28 +05:30
|
|
|
<h2>Download Year-wise Summary Report</h2>
|
|
|
|
|
|
|
|
|
|
{% if message %}
|
2025-12-04 17:31:12 +05:30
|
|
|
<p class="message">{{ message }}</p>
|
2025-09-18 11:33:28 +05:30
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
|
|
<form method="GET" action="{{ url_for('summary_report') }}">
|
2025-12-29 15:22:15 +05:30
|
|
|
<label>Select Year:</label>
|
2025-09-18 11:33:28 +05:30
|
|
|
<select name="year" id="year" required>
|
|
|
|
|
<option value="">-- Select Year --</option>
|
|
|
|
|
{% for year in years %}
|
2025-12-29 15:22:15 +05:30
|
|
|
<option value="{{ year }}">AY {{ year }}-{{ year + 1 }}</option>
|
2025-09-18 11:33:28 +05:30
|
|
|
{% endfor %}
|
|
|
|
|
</select>
|
2025-12-29 15:22:15 +05:30
|
|
|
|
2025-09-18 11:33:28 +05:30
|
|
|
<button type="submit">Download Summary Report</button>
|
|
|
|
|
</form>
|
2025-12-04 17:31:12 +05:30
|
|
|
|
2025-12-29 15:22:15 +05:30
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
{% block scripts %}
|
|
|
|
|
<script src="{{ url_for('static', filename='js/year_dropdown.js') }}"></script>
|
|
|
|
|
<script src="{{ url_for('static', filename='js/toggle.js') }}"></script>
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block extra_js %} <script src="{{ url_for('static', filename='js/year_dropdown.js') }}"></script>
|
|
|
|
|
{% endblock %}
|
|
|
|
|
{% endblock %}
|