bornhack-website/src/teams/templates/team_detail.html

26 lines
427 B
HTML
Raw Normal View History

{% extends 'base.html' %}
{% load commonmark %}
{% block title %}
Team: {{ team.name }} | {{ block.super }}
{% endblock %}
{% block content %}
<h3>{{ team.name }}</h3>
{{ team.description|unsafecommonmark }}
2017-04-01 21:16:23 +00:00
{% if team.sub_teams.exists %}
<hr />
<h3>Subteams:</h3>
<ul>
{% for sub_team in team.sub_teams.all %}
<li>{{ sub_team.name }}</li>
{% endfor %}
</ul>
{% endif %}
{% endblock %}