{% if theme() and file_exists('app/templates/themes/' + theme() + '/base.html') %} {% extends 'themes/' + theme() + '/base.html' %} {% else %} {% extends "base.html" %} {% endif %} %} {% from 'bootstrap/form.html' import render_form %} {% if current_user.is_authenticated and user.id == current_user.id %} {% set active_child = 'view_profile' %} {% endif %} {% block app_content %}
{{ _('Joined') }}: {{ moment(user.created).fromNow(refresh=True) }}
{% if user.bot %}
{{ _('Bot Account') }}
{% endif %}
{{ _('Attitude') }}: {{ (user.attitude * 100) | round | int }}%
{{ _('No posts yet.') }}
{% endif %} {% if post_replies %}{{ _('No comments yet.') }}
{% endif %}