add dropdown year as AY yyyy formate and seprate css files commit

This commit is contained in:
2025-12-06 23:17:22 +05:30
parent 7ee2376455
commit bd24fa5f4e
22 changed files with 643 additions and 807 deletions

View File

@@ -56,7 +56,7 @@
}
.message {
color: red;
color: rgb(0, 0, 0);
margin-top: 15px;
}
@@ -97,7 +97,9 @@
<select name="year" id="year" required>
<option value="">-- Select Year --</option>
{% for year in years %}
<option value="{{ year }}">{{ year }}</option>
<!-- <option value="{{ year }}">{{ year }}</option> -->
<option value="{{ year }}">AY {{ year }}-{{year +1 }}</option>
{% endfor %}
</select>
<button type="submit">Download Summary Report</button>