|
{% if user.notes %}
{% autoescape false %}
{{ user.notes }}
{% endautoescape %}
{% else %}
User has not added any notes about him.
{% endif %}
|
Group: |
{{ user.primary_group.name }} |
Joined: |
{{ user.date_joined|format_date('%b %d %Y') }} |
Posts: |
{{ user.post_count }} ({{ posts_per_day }} per day) |
Last seen: |
{%- if user.lastseen -%} {{ user.lastseen|time_since }} {%- else -%} Never seen {%- endif -%} |
Last post: |
{%- if user.last_post -%}
{{ user.last_post.date_created|time_since }}
{%- else -%}
Never
{%- endif -%}
|
Online time: |
TODO: 1024 hours |
Location: |
{%- if user.location -%} {{ user.location }} {%- else -%} No Info {%- endif -%} |
Birthday: |
{% if user.birthday %} {{ user.birthday|format_date('%b %d %Y') }} {% else %} No Info {% endif %} {% if user.gender %} ({{ user.gender }}) {% endif %} |
|