{% extends "richtemplates/accounts/profile.html" %} {% load i18n %} {% block extra-head %}{{ block.super }} {% endblock %} {% block col-left %}
{% if profile.is_team %}{% trans "Team" %}{% else %}{% trans "User" %}{% endif %}: {{ request.user }}
{% if request.user == profile.user %} {% endif %}
{% if profile.is_team %}
{% trans "Team's members" %} ({{ profile.group.user_set.all|length }})
{% if request.user == profile.user %} {% endif %} {% if not profile.group.user_set.all|length %}

{% trans "No members" %}

{% else %} {% for member in profile.group.user_set.all %} {% endfor %}
{% trans "Member" %}
{{ member }}
{% endif %}
{% endif %} {% endblock %} {% block col-main-title %} {% if profile.is_team %} {% trans "Team profile" %} {% else %} {% trans "User profile" %} {% endif %} {% endblock %} {% block col-main-content %}
{% csrf_token %} {% include "richtemplates/forms/form.html" %}
{% endblock %} {% block col-main-extra %}
{% trans "Actions" %}
{% if can_fork_external %} {% endif %} {% if profile.is_team %} {# Team actions #} {% else %} {# Standard (not-team) user actions #} {% endif %}
{% trans "Action" %} {% trans "Description" %}
{% trans "Create project" %}

{% trans "Create new project" %}

{% trans "Change password" %}

{% trans "Change your password" %}

{% trans "Fork project" %}

{% blocktrans %} Fork project from external location (i.e. from Bitbucket). This is not same as forking project within {{ site }} - to fork project already present here simply navigate to the project homepage and run fork process from there. {% endblocktrans %}

{% trans "Add member" %}

{% trans "Allow to add new member" %}

{% trans "Convert to team" %}

{% blocktrans %} Converts your account into Team. This account would remain untouched - you'd be able to authorize with it and manage it as usual. However, new Group with same name as your username would be created and Team connecting this group would be created for each project you're author of. {% endblocktrans %}

{% endblock %}