Skip to content

Commit

Permalink
fix: added default option for Academic year label
Browse files Browse the repository at this point in the history
  • Loading branch information
ramG-reddy committed Dec 1, 2024
1 parent c84074a commit 819f102
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion FusionIIIT/templates/examination/download_resultProf.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ <h1>Download Result</h1>
<div style="display: flex; flex-direction: column; gap: 10px; min-width: 300px;">
<label for="year-select" style="font-weight: bold;">Academic Year</label>
<select id="year-select" name="year" onchange="fetchCoursesByYear(this.value)" style="padding: 12px; font-size: 1rem; min-height: 50px; width: 100%; background: white; appearance: none; outline:none; cursor: pointer;">

<option value="" selected>Select Year</option>
{% for working_year in working_years %}
<option value="{{ working_year.working_year }}">{{ working_year.working_year }}</option>
{% empty %}
Expand Down
2 changes: 1 addition & 1 deletion FusionIIIT/templates/examination/gradeSubmission.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ <h1>Submit Results</h1>
<div style="display: flex; flex-direction: column; gap: 10px; min-width: 300px;">
<label for="year-select" style="font-weight: bold;">Academic Year</label>
<select id="year-select" name="year" onchange="fetchCoursesByYear(this.value)" style="padding: 12px; font-size: 1rem; min-height: 50px; width: 100%; background: white; appearance: none; outline:none; cursor: pointer;">

<option value="" selected>Select Year</option>
{% for working_year in working_years %}
<option value="{{ working_year.working_year }}">{{ working_year.working_year }}</option>
{% empty %}
Expand Down

0 comments on commit 819f102

Please sign in to comment.