{% extends "base.html" %} {% block content %} {% include "includes/sidenav.html" %}

Team Invitations

{% if user.userprofile.team %} You are currently in the team: {{ user.userprofile.team.name }} {% else %} Check your pending team invitations {% endif %}

{% if join_requests %}
{% for request in join_requests %}
{% if request.team.logo %} {{ request.team.name }} {% else %}
{% endif %}

{{ request.team.name }}

Invited by {{ request.team.admin.username }}

{% csrf_token %}
{% endfor %}
{% else %}

No Team Invitations

You don't have any pending team invitations at the moment. {% if not user.userprofile.team %}
Create your own team {% endif %}

{% endif %}
{% endblock content %}