{% extends '../layout-growi/base/layout.html' %} {% block html_title %}{{ customizeService.generateCustomTitle(t('User Settings')) }}{% endblock %} {% block content_header %} {% endblock %} {% block content_main %}
{% set smessage = req.flash('successMessage') %} {% if smessage.length %}
{{ smessage }}
{% endif %} {% set wmessage = req.flash('warningMessage') %} {% if wmessage.length %}
{{ wmessage }}
{% endif %} {% if req.form.errors.length > 0 %}
    {% for error in req.form.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}
{{ t('Basic Info') }}
{% if getConfig('crowi', 'security:registrationWhiteList') && getConfig('crowi', 'security:registrationWhiteList').length %}

{{ t('page_register.form_help.email') }}

    {% for em in getConfig('crowi', 'security:registrationWhiteList') %}
  • {{ em }}
  • {% endfor %}

{% endif %}
{{ t('Set Profile Image') }}

{% if fileUploadService.getIsUploadable() %}
{% else %} * {{ t('page_me.form_help.profile_image1') }}
* {{ t('page_me.form_help.profile_image2') }}
{% endif %}
{# end of .tab-contents #} {#
ユーザーID (ユーザー名) の変更

すべてのマイページの

ユーザーIDを変更すると、/user/{{ user.username }} 以下のページがすべて /user/新しいユーザーID の下に移動されます。
また、これまでのページにリダイレクトは設定されず、この操作の取り消しもできません。
実行には十分に注意をしてください。

#}
{% endblock content_main %} {% block content_footer %} {% endblock content_footer %} {% block layout_footer %} {% endblock layout_footer %}