
Previously, this view only allowed editing of the logged-in user. Now you can specify the user to edit in the querystring. If you are an admin the view allows you to edit any user's profile, with a warning message. The warning only shows up if the admin is editing another user's profile. Make sure to pass the username to this view at every step in the process
36 lines
1.4 KiB
HTML
36 lines
1.4 KiB
HTML
{#
|
|
# GNU MediaGoblin -- federated, autonomous media hosting
|
|
# Copyright (C) 2011 Free Software Foundation, Inc
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#}
|
|
{% extends "mediagoblin/base.html" %}
|
|
|
|
{% import "/mediagoblin/utils/wtforms.html" as wtforms_util %}
|
|
|
|
{% block mediagoblin_content %}
|
|
|
|
<form action="{{ request.urlgen('mediagoblin.edit.profile') }}?username={{
|
|
user['username'] }}"
|
|
method="POST" enctype="multipart/form-data">
|
|
<div class="grid_6 prefix_1 suffix_1 edit_box form_box">
|
|
<h1>Editing {{ user['username'] }}'s profile</h1>
|
|
{{ wtforms_util.render_divs(form) }}
|
|
<div class="form_submit_buttons">
|
|
<input type="submit" value="submit" class="button" />
|
|
</div>
|
|
</div>
|
|
</form>
|
|
{% endblock %}
|