{% extends "base.html" %} {% block title %}プロフィール{% endblock %} {% block content %} {% if let Some(u) = user %}

プロフィール編集

{% if profile_success %}

プロフィールを更新しました

{% endif %} {% if let Some(err) = profile_error %}

{{ err }}

{% endif %}

パスワード変更

{% if password_success %}

パスワードを変更しました

{% endif %} {% if let Some(err) = password_error %}

{{ err }}

{% endif %}

所属グループ

{% if !my_groups.is_empty() %} {% else %}

所属しているグループはありません。

{% endif %}
{% endif %} {% endblock %}