{% extends theme("user/profile_layout.html") %} {% block breadcrumb %} {% endblock %} {% block profile_content %}
{% if user.notes %}
{% trans %}Info{% endtrans %}
{{ user.notes|markup }}
{% else %}
{% endif %} {% if user.signature %}
{% trans %}Signature{% endtrans %}
{{ user.signature|markup }}
{% endif %}
{# Other information available for use: # TODO: eventually use the information (i don't how i should represent it.. any ideas?)
{% trans %}Group{% endtrans %}: {{ user.primary_group.name }}
{% trans %}Joined{% endtrans %}: {{ user.date_joined|format_date('%b %d %Y') }}
{% trans %}Posts{% endtrans %}: {{ user.post_count }} ({{ user.posts_per_day }} per day)
{% trans %}Last seen{% endtrans %}: {%- if user.lastseen -%} {{ user.lastseen|time_since }} {%- else -%} {% trans %}Never seen{% endtrans %} {%- endif -%}
{% trans %}Last post{% endtrans %}: {%- if user.last_post -%} {{ user.last_post.date_created|time_since }} {%- else -%} {% trans %}Never{% endtrans %} {%- endif -%}
{% trans %}Location{% endtrans %}: {%- if user.location -%} {{ user.location }} {%- else -%} {% trans %}No Info{% endtrans %} {%- endif -%}
{% trans %}Birthday{% endtrans %}: {% if user.birthday %} {{ user.birthday|format_date('%b %d %Y') }} {% else %} {% trans %}No Info{% endtrans %} {% endif %} {% if user.gender %} ({{ user.gender }}) {% endif %}
#}
{% endblock %}