Skip to content
Open
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
dff58e0
Removed evaluation column from term management page
Jonimz Mar 16, 2026
ebe4036
Removed Evaluations column from term management table, including
Jonimz Mar 30, 2026
1ec26c2
Merge branch 'development' of https://github.com/BCStudentSoftwareDev…
JohnCox2211 Mar 31, 2026
3a158a7
Merge branch '522-remove-evaluation-buttons-from-term-management' of …
JohnCox2211 Mar 31, 2026
3d68c86
updated student labor evaluation form/controller/template after remov…
Jonimz Apr 8, 2026
4c65401
Remove midyear/final evaluation branching from student labor evaluation
Jonimz Apr 8, 2026
74b9422
Merge branch 'development' into 522-remove-evaluation-buttons-from-te…
Jonimz Apr 8, 2026
d94f939
Merge branch '522-remove-evaluation-buttons-from-term-management' of …
JohnCox2211 Apr 9, 2026
56ffec8
Add default boolean fields isFinalEvaluationOpen and isMidyearEvaluat…
Jonimz Apr 13, 2026
1450021
Remove unused evaluation status fields to match the database schema.
Jonimz May 2, 2026
6c03a95
Merge branch 'development' into 522-remove-evaluation-buttons-from-te…
MImran2002 Jun 12, 2026
d78a67f
removed extension"
MImran2002 Jun 12, 2026
2696bcd
Delete app/static/js/ckeditor/samples/toolbarconfigurator/lib/codemir…
MImran2002 Jun 12, 2026
d492600
Delete app/static/js/ckeditor/.DS_Store
MImran2002 Jun 12, 2026
f1e1f1c
Delete database/fix-fall-positions/.DS_Store
MImran2002 Jun 12, 2026
73b636a
Delete database/.DS_Store
MImran2002 Jun 12, 2026
207c7c8
removed unncessary files
MImran2002 Jun 12, 2026
297f32e
some backend functions remove for stud evals
MImran2002 Jun 12, 2026
41a8550
talked with Brian the model are kept to make sure data is not removed
MImran2002 Jun 12, 2026
353eed7
talked with Brian the model are kept to make sure data is not removed
MImran2002 Jun 12, 2026
d8540e8
make sure all the download button are working
MImran2002 Jun 12, 2026
2ec575c
Merge branch 'development' into 522-remove-evaluation-buttons-from-te…
MImran2002 Aug 19, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 1 addition & 37 deletions app/templates/admin/termManagement.html
Original file line number Diff line number Diff line change
Expand Up @@ -72,15 +72,6 @@ <h4 class="mb-0">
class="glyphicon glyphicon-bookmark"
tabindex="0">
</span>
</th>
<th>Evaluations <br />(Midyear | Final)
<span data-toggle="tooltip"
title="Toggle the midyear/final student labor evaluation (SLE) states."
data-placement="right"
class="glyphicon glyphicon-bookmark"
tabindex="0">
</span>
</th>
</tr>
</thead>
<tbody>
Expand Down Expand Up @@ -166,33 +157,6 @@ <h4 class="mb-0">
onclick="termStatus({{term.termCode}})"
value="{{term.termState}}">{% if term.termState == True %} Open {% elif term.termState == False %} Closed {% endif %}
</button>
</td>
<td style="text-align:center">
<div class="btn-group" role="group" aria-label="button group for evaluations">
{% if (term.termCode|string)[-2:] == "00" %}
<button
id="midyear_eval_btn_{{term.termCode}}"
name="midyearEvalBtn"
style='width: 50%'
type="button"
class="btn btn-med {% if term.isMidyearEvaluationOpen == True %} btn-success {% elif term.isMidyearEvaluationOpen == False %} btn-danger {% endif %}"
onclick="toggleEval({{term.termCode}}, 1)"
value="{{term.isMidyearEvaluationOpen}}">{% if term.isMidyearEvaluationOpen == True %} Open {% elif term.isMidyearEvaluationOpen == False %} Closed {% endif %}
</button>
{% endif %}
{% if (term.termCode|string)[-2:] == "00" or (term.termCode|string)[-2:] == "13" %} {# AY and Summer only #}
<button
id="eval_btn_{{term.termCode}}"
name="evalBtn"
{% if (term.termCode|string)[-2:] == "00" %} style='width: 50%' {% else %} style='width: auto;' {% endif %}
type="button"
class="btn btn-med {% if term.isFinalEvaluationOpen == True %} btn-success {% elif term.isFinalEvaluationOpen == False %} btn-danger {% endif %}"
onclick="toggleEval({{term.termCode}}, 0)"
value="{{term.isFinalEvaluationOpen}}">{% if term.isFinalEvaluationOpen == True %} Open {% elif term.isFinalEvaluationOpen == False %} Closed {% endif %}
</button>
{% endif %}
</div>
</td>
</tr>
{% endfor %}
</tbody>
Expand All @@ -202,4 +166,4 @@ <h4 class="mb-0">
{% endfor %}
</div>
</div>
{% endblock %}
{% endblock %}