Skip to content

Commit

Permalink
Merge pull request #1284 from BCStudentSoftwareDevTeam/completionprog…
Browse files Browse the repository at this point in the history
…ramtest

Signifies for the progress on the CCE Minor page, we added icons
  • Loading branch information
BrianRamsay committed Jul 22, 2024
2 parents ef5ad7a + e906f5b commit f8a1df9
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions app/templates/admin/cceMinor.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
{% block styles %}
{{super()}}
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.11.3/css/jquery.dataTables.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
{% endblock %}
{% endblock %}
{% block app_content %}
Expand All @@ -18,6 +19,7 @@ <h2>CCE Minor Progress</h2>
<thead>
<tr>
<th>Name</th>
<th></th>
<th>Sustained Engagements</th>
<th>Summer Experience</th>
<th>Requested Other Engagement</th>
Expand All @@ -29,6 +31,13 @@ <h2>CCE Minor Progress</h2>
<td>
<a href="/profile/{{student.username}}/cceMinor" target="_blank">{{ student.firstName }} {{ student.lastName }}</a>
</td>
<td>
{% if student.engagementCount == 4 and student.hasSummer == 'Completed' %}
<i class="fa-solid fa-circle"></i>
{% else %}
<i class="fa-solid fa-circle-half-stroke"></i>
{% endif %}
</td>
<td>{{ student.engagementCount }}/4 </td>
<td>{{ student.hasSummer }}</td>
<td>
Expand Down

0 comments on commit f8a1df9

Please sign in to comment.