{% extends 'base/base.html' %} {% load i18n %} {% block bodyblock %}
{% csrf_token %} {% if user == request.user %} {% blocktrans with team=team.name %}

Are you sure that you want to leave the team {{ team }}?

{% endblocktrans %} {% if last %}

You are the last member of the team! When you leave, the team gets deleted and all imagesets owned by it will be public!

{% endif %} {% else %} {% blocktrans with team=team.name user=user.username %}

Are you sure that you want to kick the user {{ user }} from the team {{ team }}?

{% endblocktrans %} {% endif %} {% trans 'Cancel' %}
{% endblock bodyblock %}