-
Notifications
You must be signed in to change notification settings - Fork 0
/
_people.html
29 lines (27 loc) · 905 Bytes
/
_people.html
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
{% extends "_layout.html" %}
{% block title %}People{% endblock %}
{% block content %}
{%macro maketable(committee, role) -%}
<table class="table table-sm">
<tbody>
{% for c in committee %}
{% if role.lower() in c.role.lower() %}
<tr>
<td style="width: 200px"><a href="{{c.url}}">{{c.name}}</a></td>
<td style="width: 300px">{{c.email}}</td>
<td>{{c.affil}}</td>
</tr>
{% endif %}
{% endfor %}
</tbody>
</table>
{%- endmacro %}
<div class="container">
<h4 id="chair">Conference Chairs</h4>
{{ maketable(committee, 'Conference Chair') }}
<h4 id="committee">Student Paper Competition Chair</h4>
{{ maketable(committee, 'Student Paper Competition Chair') }}
<h4 id="committee">Program Committee</h4>
{{ maketable(committee, 'Program Committee') }}
</div>
{% endblock %}