{% extends 'profile/master.twig' %} {% from 'macros.twig' import container_title %} {% from 'user/macros.twig' import user_profile_warning %} {% from '_layout/input.twig' import input_hidden, input_csrf, input_text, input_checkbox, input_file, input_file_raw, input_select %} {% if profile_user is defined %} {% set canonical_url = url('user-profile', {'user': profile_user.id}) %} {% set title = profile_user.username %} {% else %} {% set title = 'User not found!' %} {% endif %} {% block content %} {% if profile_is_editing %}
{{ input_csrf('profile') }} {% if perms.edit_avatar %} {{ input_file_raw('avatar[file]', 'profile__hidden', ['image/png', 'image/jpeg', 'image/gif'], {'id':'avatar-selection'}) }} {% endif %} {% else %}
{% endif %} {% include 'profile/_layout/header.twig' %} {% if profile_is_editing %}
  • General
  • Keep things sane and generally suitable for all ages.
  • Make sure to adhere to the rules.
{% if perms.edit_avatar %}
  • Avatar
  • May not exceed the {{ profile_user.avatarInfo.maxBytes|byte_symbol() }} file size limit.
  • May not be larger than {{ profile_user.avatarInfo.maxWidth }}x{{ profile_user.avatarInfo.maxHeight }}.
  • Will be centre cropped and scaled to at most 240x240.
  • Animated gif images are allowed.
{% endif %} {% if perms.edit_background %}
  • Background
  • May not exceed the {{ profile_user.backgroundInfo.maxBytes|byte_symbol() }} file size limit.
  • May not be larger than {{ profile_user.backgroundInfo.maxWidth }}x{{ profile_user.backgroundInfo.maxHeight }}.
  • Gif images, in general, are only allowed when tiling.
{% endif %}
{% endif %} {% if profile_notices|length > 0 %}
{% for notice in profile_notices %}

{{ notice }}

{% endfor %}
{% endif %}
{% set profile_fields = profile_user.profileFields(not (profile_is_editing and perms.edit_profile))|default([]) %} {% set show_profile_fields = profile_is_editing ? perms.edit_profile : profile_fields|length > 0 %} {% set show_background_settings = profile_is_editing and perms.edit_background %} {% set show_birthdate = profile_is_editing and perms.edit_birthdate %} {% set show_sidebar = show_profile_fields or show_background_settings %} {% if show_sidebar %}
{% if show_background_settings %}
{{ container_title('Background') }}
{{ input_file('background[file]', '', ['image/png', 'image/jpeg', 'image/gif'], {'id':'background-selection'}) }} {{ input_checkbox('background[attach]', 'None', true, '', 0, true, {'onchange':'profileChangeBackgroundAttach(this.value)'}) }} {% for key, value in background_attachments %} {{ input_checkbox('background[attach]', value, key == profile_user.backgroundInfo.attachment, '', key, true, {'onchange':'profileChangeBackgroundAttach(this.value)'}) }} {% endfor %} {{ input_checkbox('background[attr][blend]', 'Blend', profile_user.backgroundInfo.blend, '', '', false, {'onchange':'profileToggleBackgroundAttr(\'blend\', this.checked)'}) }} {{ input_checkbox('background[attr][slide]', 'Slide', profile_user.backgroundInfo.slide, '', '', false, {'onchange':'profileToggleBackgroundAttr(\'slide\', this.checked)'}) }}
{% endif %} {% if current_user is not defined %}
You must log in to view full profiles!
{% elseif show_profile_fields %}
{{ container_title('Elsewhere') }}
{% for field in profile_fields %} {% endfor %}
{% endif %} {% if show_birthdate %}
{{ container_title('Birthdate') }}
{% endif %}
{% endif %} {% if profile_user is defined %}
{% if (profile_is_editing and perms.edit_about) or profile_user.hasProfileAbout %}
{{ container_title('About ' ~ profile_user.username) }} {% if profile_is_editing %}
{{ input_select('about[parser]', constant('\\Misuzu\\Parsers\\Parser::NAMES'), profile_user.profileAboutParser, '', '', false, 'profile__about__select') }}
{% else %}
{{ profile_user.profileAboutParsed|raw }}
{% endif %}
{% endif %} {% if (profile_is_editing and perms.edit_signature) or profile_user.hasForumSignature %}
{{ container_title('Signature') }} {% if profile_is_editing %}
{{ input_select('signature[parser]', constant('\\Misuzu\\Parsers\\Parser::NAMES'), profile_user.forumSignatureParser, '', '', false, 'profile__signature__select') }}
{% else %}
{{ profile_user.forumSignatureParsed|raw }}
{% endif %}
{% endif %} {% if profile_warnings|length > 0 or profile_warnings_can_manage %}
{{ container_title('Account Standing', false, profile_warnings_can_manage ? url('manage-users-warnings', {'user': profile_user.id}) : '') }}
{% if profile_warnings_can_manage %}
User IP
Issuer
Issuer IP
{% endif %}
Type
Created
Duration
Note
{% for warning in profile_warnings %} {{ user_profile_warning(warning, profile_warnings_view_private, profile_warnings_can_manage, profile_warnings_can_manage ? csrf_token() : '') }} {% endfor %}
{% endif %} {% endif %}
{% if profile_is_editing %} {% else %}
{% endif %} {% endblock %}