22 lines
695 B
HTML
22 lines
695 B
HTML
<p>The following Claremont MakerSpace Member Certifications have been issued:</p>
|
|
<table border="1">
|
|
<tr>
|
|
<th>Certification</th>
|
|
<th>Version</th>
|
|
<th>Member</th>
|
|
<th>Department</th>
|
|
<th>Certified By</th>
|
|
<th>Date</th>
|
|
</tr>
|
|
{% for certification in certifications %}
|
|
<tr>
|
|
<td>{{ certification.certification_version.definition.name }}</td>
|
|
<td>{{ certification.certification_version.semantic_version }}</td>
|
|
<td>{{ certification.member }}</td>
|
|
<td>{{ certification.certification_version.definition.department }}</td>
|
|
<td>{{ certification.certified_by }}</td>
|
|
<td>{{ certification.date }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|