{% extends "musician/base.html" %} {% load i18n %} {% block content %}

{% trans "Profile" %}

{% trans "Little description on profile page." %}

{% trans "User information" %}
user-profile-picture

{{ profile.username }}

{{ profile.type }}

{% trans "Preferred language:" %} {{ profile.language|language_name_local }}

{% comment %} {% endcomment %}
{% with profile.billing as contact %}
{% trans "Billing information" %}
{{ contact.name }}
{{ contact.address }}
{{ contact.zipcode }} {{ contact.city }} {{ contact.country }}
{{ contact.vat }}
{% trans "payment method:" %} {{ payment.method }}
{% if payment.method == 'SEPADirectDebit' %} IBAN {{ payment.data.iban }} {% else %} {# #} Details: {{ payment.data }} {% endif %}
{% endwith %} {% endblock %}