{# -*- coding: utf-8 -*- This file is part of Invenio. Copyright (C) 2023 Graz University of Technology. Invenio-Users-Resources is free software; you can redistribute it and/or modify it under the terms of the MIT License; see LICENSE file for more details. #} {% from "invenio_userprofiles/settings/_macros.html" import render_field, form_errors %} {%- block settings_content scoped %}

{{ _("Notifications") }}

{%- set form = notifications_form %} {%- for field in form %} {%- if field.widget.input_type == 'hidden' %} {{ field() }} {%- endif %} {%- endfor %} {% set enabled_field = form.enabled %}

{{ enabled_field.description }}

{%- set profile_url = url_for('invenio_userprofiles.profile') %}

{% trans %} We use your primary email address to notify you on. You can change your email on your profile settings {% endtrans %}

{{ current_user.email }}
{{ form.id }}
{{ _('Cancel') }}
{% endblock settings_content%}