{% extends 'base.html' %} {% load commonmark %} {% load teams_tags %} {% load static %} {% block title %} People | {{ block.super }} {% endblock %} {% block content %}

The People of BornHack

The following is a list of the volunteers that have helped make BornHack happen. It goes without saying that an event like BornHack would not be possible to pull off without our volunteers. We are forever grateful, and we leave your names here as a recognition of the work you put in. Thank you! {% for camp in camp_list %} {% if camp.teams.exists %}

{{ camp.title }} Teams
{% for team in camp.teams.all %} {% endfor %}
Team Name Team Responsible Team Members
{{ team.name }} Team {% for resp in team.responsible_members.all %} {{ resp.profile.get_public_credit_name }}
{% endfor %}
{% for member in team.regular_members.all %} {% if member.profile.get_public_credit_name != "Unnamed" %} {{ member.profile.get_public_credit_name }}
{% endif %} {% empty %} No team members {% endfor %} {% if team.unnamed_members %} {% if team.unnamed_members.count < team.regular_members.count %}Plus {% endif %}{{ team.unnamed_members.count }} anonymous member(s). {% endif %}
{% endif %} {% endfor %} {% endblock %}