{% extends 'bingo/base.html' %} {% load i18n %} {% load staticfiles %} {% block title %}{% trans 'user profile:' %} {{ profile_user.username }}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block headline %}{% trans 'user profile:' %} {{ profile_user.username }}{% endblock %} {% block content %}

{% if user == profile_user %} {% trans "Your bingo boards" %} {% else %} {% blocktrans %} {{ profile_user }}'s bingo boards {% endblocktrans %} {% endif %}

{% include "bingo/board_list.html" %} {% if user == profile_user %}

{% trans "Claim other boards" %}

{% trans "If you have have created boards with a password, you can add them to your profile:" %}
{% csrf_token %} {{ claim_form.as_table }}
{% endif %} {% endblock %}