-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathco_op_management.html
More file actions
45 lines (45 loc) · 1.69 KB
/
co_op_management.html
File metadata and controls
45 lines (45 loc) · 1.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{% extends "nav_protected.html" %}
{% block title %}
Co-Op Management
{% endblock %}
{% block body %}
<div class="container main">
{% if is_eval_director%}
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Co-Op Management</h3>
</div>
<div class="panel-body table-fill">
<div class="table-responsive">
<table class="table table-striped no-bottom-margin" data-module="table" data-searchable="false" data-order="[[ 1, "asc" ]]" data-length-change="true" data-paging="false" data-info="true">
<thead>
<tr>
<th>Name</th>
<th>Semester</th>
<th>Delete</th>
</tr>
</thead>
<tbody>
{% for c in co_op %}
<tr id="coop-{{c[1]}}">
<td>
<img class="table-img mobile-hide" src="https://profiles.csh.rit.edu/image/{{c[1]}}"> {{ get_member_name(c[1]) }}
</td>
<td>
{{c[0]}}
</td>
<td width=100px>
<a href="#" data-module="coopDelete" data-uid="{{c[1]}}">
<i class="bi bi-trash3 red align-center" style="width: 100%"></i>
</a>
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>
{% endif %}
</div>
{% endblock %}