24 lines
760 B
HTML
24 lines
760 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Download CIT Report{% endblock %}
|
|
|
|
{% block extra_css %}
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/report_model.css') }}">
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
<h2>Download CIT Report</h2>
|
|
<form method="GET" action="{{ url_for('cit_report') }}" target="_blank">
|
|
<label for="year">Select Year:</label><br>
|
|
<select name="year" id="year" required>
|
|
<option value="">-- Select Year --</option>
|
|
{% for y in years %}
|
|
<option value="{{ y }}">AY {{ y }} - {{ y + 1 }}</option>
|
|
{% endfor %}
|
|
</select>
|
|
<br>
|
|
<button type="submit">Download Excel</button>
|
|
</form>
|
|
</div>
|
|
{% endblock %} |