pidgin/nest

Merged in default (pull request #91)

2020-04-18, Gary Kramlich
4001a8922417
Merged in default (pull request #91)

Initialize search fields from URL correctly.

Approved-by: Gary Kramlich
Approved-by: John Bailey
{{ range sort .Site.Data.gsoc "year" "desc" }}
<h3 id="gsoc-{{ .year }}">{{ .year }}</h3>
<table>
<thead>
<th>{{ T "Project" }}</th>
<th>{{ T "Student" }}</th>
<th>{{ T "Mentor" }}</th>
<th>{{ T "Status" }}</th>
</thead>
<tbody>
{{ range .participants }}
<tr>
<td>{{ .project }}</td>
<td>{{ .student }}</td>
<td>{{ .mentor }}</td>
<td>{{ .status | markdownify }}</td>
</tr>
{{ end }}
</tbody>
</table>
{{ end }}