{% extends "misago/profile/base.html" %} {% load i18n %} {% block title %}{% trans "Details" %} | {{ block.super }}{% endblock %} {% block og-title %}{% trans "Details" %} | {{ block.super }}{% endblock %} {% block section %}
{% if profile_details.groups %}
{% for group in profile_details.groups %}

{{ group.name }}

{% for field in group.fields %}
{{ field.name }}:
{% if field.html %} {{ field.html|safe }} {% elif field.url %}

{% if field.text %} {{ field.text }} {% else %} {{ field.url }} {% endif %}

{% elif field.text %}

{{ field.text }}

{% endif %}
{% endfor %}
{% endfor %}
{% else %}
{% if is_authenticated_user %} {% trans "You are not sharing any details with others." %} {% else %} {% blocktrans trimmed with username=profile %} {{ username }} is not sharing any details with others. {% endblocktrans %} {% endif %}
{% endif %}
{% endblock section %}