mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 01:05:42 +00:00
Re- rename edit_profile to settings
This commit is contained in:
parent
15a418cf7c
commit
1960b14d9d
@ -131,9 +131,9 @@ def password_reset(token):
|
|||||||
title='Password Reset')
|
title='Password Reset')
|
||||||
|
|
||||||
|
|
||||||
@auth.route('/edit_profile', methods=['GET', 'POST'])
|
@auth.route('/settings', methods=['GET', 'POST'])
|
||||||
@login_required
|
@login_required
|
||||||
def edit_profile():
|
def settings():
|
||||||
"""
|
"""
|
||||||
View where loged in User can change own User information like Password etc.
|
View where loged in User can change own User information like Password etc.
|
||||||
"""
|
"""
|
||||||
@ -144,7 +144,7 @@ def edit_profile():
|
|||||||
db.session.add(current_user)
|
db.session.add(current_user)
|
||||||
db.session.commit()
|
db.session.commit()
|
||||||
flash('Your password has been updated.')
|
flash('Your password has been updated.')
|
||||||
return redirect(url_for('auth.edit_profile'))
|
return redirect(url_for('auth.settings'))
|
||||||
else:
|
else:
|
||||||
flash('Invalid password.')
|
flash('Invalid password.')
|
||||||
change_profile_form = EditProfileForm(user=current_user)
|
change_profile_form = EditProfileForm(user=current_user)
|
||||||
@ -155,14 +155,14 @@ def edit_profile():
|
|||||||
flash('Your email has been updated.')
|
flash('Your email has been updated.')
|
||||||
change_profile_form.email.data = current_user.email
|
change_profile_form.email.data = current_user.email
|
||||||
return render_template(
|
return render_template(
|
||||||
'auth/edit_profile.html.j2',
|
'auth/settings.html.j2',
|
||||||
change_password_form=change_password_form,
|
change_password_form=change_password_form,
|
||||||
change_profile_form=change_profile_form,
|
change_profile_form=change_profile_form,
|
||||||
title='Edit Profile'
|
title='Settings'
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
@auth.route('/edit_profile/delete_self/<int:user_id>', methods=['GET', 'POST'])
|
@auth.route('/settings/delete_self/<int:user_id>', methods=['GET', 'POST'])
|
||||||
@login_required
|
@login_required
|
||||||
def delete_self(user_id):
|
def delete_self(user_id):
|
||||||
selected_user = User.query.filter_by(id=user_id).first()
|
selected_user = User.query.filter_by(id=user_id).first()
|
||||||
|
@ -72,7 +72,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<ul id="nav-account-dropdown" class="dropdown-content">
|
<ul id="nav-account-dropdown" class="dropdown-content">
|
||||||
{% if current_user.is_authenticated %}
|
{% if current_user.is_authenticated %}
|
||||||
<li><a href="{{ url_for('auth.edit_profile') }}"><i class="material-icons">settings</i>Settings</a></li>
|
<li><a href="{{ url_for('auth.settings') }}"><i class="material-icons">settings</i>Settings</a></li>
|
||||||
<li><a href="{{ url_for('auth.logout') }}"><i class="material-icons">power_settings_new</i>Log out</a></li>
|
<li><a href="{{ url_for('auth.logout') }}"><i class="material-icons">power_settings_new</i>Log out</a></li>
|
||||||
{% else %}
|
{% else %}
|
||||||
<li><a href="{{ url_for('auth.login') }}"><i class="material-icons">person</i>Log in</a></li>
|
<li><a href="{{ url_for('auth.login') }}"><i class="material-icons">person</i>Log in</a></li>
|
||||||
@ -116,7 +116,7 @@
|
|||||||
<li><div class="divider"></div></li>
|
<li><div class="divider"></div></li>
|
||||||
<li><a class="subheader">Account</a></li>
|
<li><a class="subheader">Account</a></li>
|
||||||
{% if current_user.is_authenticated %}
|
{% if current_user.is_authenticated %}
|
||||||
<li><a href="{{ url_for('auth.edit_profile') }}"><i class="material-icons">settings</i>Settings</a></li>
|
<li><a href="{{ url_for('auth.settings') }}"><i class="material-icons">settings</i>Settings</a></li>
|
||||||
<li><a href="{{ url_for('auth.logout') }}"><i class="material-icons">power_settings_new</i>Log out</a></li>
|
<li><a href="{{ url_for('auth.logout') }}"><i class="material-icons">power_settings_new</i>Log out</a></li>
|
||||||
{% else %}
|
{% else %}
|
||||||
<li><a href="{{ url_for('auth.login') }}"><i class="material-icons">person</i>Log in</a></li>
|
<li><a href="{{ url_for('auth.login') }}"><i class="material-icons">person</i>Log in</a></li>
|
||||||
|
Loading…
Reference in New Issue
Block a user