{% extends "base.html" %} {% load i18n %} {% block page_name %}{% trans "Merge Teams" %}{% endblock %} {% block extrahead %}{{ block.super }} {% endblock %} {% block content %}

{% trans "Merge Teams" %}


{% if not team_object or not other_team_object %}

{% trans "You need two valid teams you want to merge with another." %}

{% else %}

{% blocktrans with other_team_object.name as teamname %}Go back to the main page of {{teamname}}.{% endblocktrans %}

{% endif %}
{% endblock %}