46 lines
1.3 KiB
HTML
46 lines
1.3 KiB
HTML
{% extends "base.html" %} {% block title %}Download Summary Report{% endblock %}
|
|
{% block extra_css %}
|
|
<<<<<<< HEAD
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/summary.css') }}" />
|
|
=======
|
|
<link
|
|
rel="stylesheet"
|
|
href="{{ url_for('static', filename='css/summary.css') }}"
|
|
/>
|
|
>>>>>>> a8e47af61c86ea9e13f18c0133e8c687573bf392
|
|
{% endblock %} {% block content %}
|
|
<div class="container">
|
|
<div class="head">
|
|
<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>
|
|
|
|
<a id="downloadBtn" href="#">Download Summary Report</a>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- 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>
|
|
<<<<<<< HEAD
|
|
{% endblock %}
|
|
=======
|
|
{% endblock %}
|
|
>>>>>>> a8e47af61c86ea9e13f18c0133e8c687573bf392
|