Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Signifies for the progress on the CCE Minor page, we added icons #1284

Merged
merged 1 commit into from
Jul 22, 2024
Merged
Changes from all commits
Commits
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
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
Loading