{% extends 'team_base.html' %} {% load commonmark %} {% load bootstrap3 %} {% load teams_tags %} {% block team_content %}

Description

{{ team.description|untrustedcommonmark }}
{# Team communications #}

Communication Channels

{{ team.camp.title }} teams primarily use mailing lists and IRC to communicate. The {{ team.name }} team can be contacted in the following ways:

Mailing List
{% if team.mailing_list and request.user in team.approved_members.all %}

The {{ team.name }} Team mailinglist is {{ team.mailing_list }}{% if team.mailing_list_archive_public %}, and the archives are publicly available{% endif %}. You should sign up for the list if you haven't already.

{% elif team.mailing_list and team.mailinglist_nonmember_posts %}

The {{ team.name }} Team mailinglist is {{ team.mailing_list }}{% if team.mailing_list_archive_public %}, and the archives are publicly available{% endif %}. You do not need to be a member of the list to post to it.

{% else %}

The {{ team.name }} Team does not have a public mailing list, but it can be contacted through our main email info@bornhack.dk. {% endif %}

IRC Channel
{% if team.public_irc_channel_name %}

The {{ team.name }} Team public IRC channel is {{ team.public_irc_channel_name }} on {{ IRCBOT_SERVER_HOSTNAME }}. {% else %}

The {{ team.name }} Team does not have a public IRC channel, but it can be reached through our main IRC channel {{ IRCBOT_PUBLIC_CHANNEL }} on {{ IRCBOT_SERVER_HOSTNAME }}.

{% endif %} {% if request.user in team.approved_members.all and team.private_irc_channel_name %}

The {{ team.name }} Team private IRC channel is {{ team.private_irc_channel_name }} on {{ IRCBOT_SERVER_HOSTNAME }}.

{% endif %}
{% endblock %}