{% extends "base.html.j2" %} {% import "materialize/wtf.html.j2" as wtf %} {% block page_content %}

{{ title }}

Profile Settings

You can edit your public profile here and share it with other nopaque users. Tell others about your (scientific) background so they can relate and network with you. You can also set what should not be visible.


  • Privacy keyboard_arrow_right

    public

    Public status
    Choose whether your profile is visible to other users.


    badge

    Public data
    Choose which data is visible on your profile.

  • Information keyboard_arrow_right
    {{ update_profile_information_form.hidden_tag() }} {{ wtf.render_field(update_profile_information_form.full_name, material_icon='badge') }} {{ wtf.render_field(update_profile_information_form.about_me, material_icon='description', id='about-me-textfield') }} {{ wtf.render_field(update_profile_information_form.website, material_icon='laptop') }} {{ wtf.render_field(update_profile_information_form.organization, material_icon='business') }} {{ wtf.render_field(update_profile_information_form.location, material_icon='location_on') }}
    {{ wtf.render_field(update_profile_information_form.submit, material_icon='send') }}
  • Avatar keyboard_arrow_right
    {{ update_avatar_form.hidden_tag() }}
    Avatar

    {{ wtf.render_field(update_avatar_form.avatar, accept='image/jpeg, image/png, image/gif', placeholder='Choose a JPEG or PNG file') }}
    deleteDelete {{ wtf.render_field(update_avatar_form.submit, material_icon='send') }}

General Settings

Make general changes to your profile here. You can change your password, username or email address, delete your profile and customize your notifications.


  • Account keyboard_arrow_right
    {{ update_account_information_form.hidden_tag() }} {{ wtf.render_field(update_account_information_form.username, material_icon='person') }} {{ wtf.render_field(update_account_information_form.email, material_icon='email') }}
    deleteDelete {{ wtf.render_field(update_account_information_form.submit, material_icon='send') }}
  • Change Password keyboard_arrow_right
    {{ update_password_form.hidden_tag() }} {{ wtf.render_field(update_password_form.password, material_icon='vpn_key') }} {{ wtf.render_field(update_password_form.new_password, material_icon='vpn_key') }} {{ wtf.render_field(update_password_form.new_password_2, material_icon='vpn_key') }}
    {{ wtf.render_field(update_password_form.submit, material_icon='send') }}
  • Notifications keyboard_arrow_right
    {{ update_notifications_form.hidden_tag() }} {{ wtf.render_field(update_notifications_form.job_status_mail_notification_level, material_icon='notifications') }}
    {{ wtf.render_field(update_notifications_form.submit, material_icon='send') }}
{% block admin_settings %}{% endblock admin_settings %}
{% endblock page_content %} {% block modals %} {{ super() }} {% endblock modals %} {% block scripts %} {{ super() }} {% endblock scripts %}