accounts.views.profile

accounts.views.profile(request)[source]

View for managing the user account profile.

This view handles both GET and POST requests. For a GET request, it renders the user’s profile page with their current information. For a POST request, it processes the form data to update the user’s username, first name, and last name.

Args:

request (HttpRequest): The HTTP request object sent by the client.

Returns:
HttpResponse: A response containing the rendered HTML template ‘profile.html’.

If the request method is POST and an error occurs during validation or saving, the response will include error messages in the context data.