diff --git a/AuthApp/views.py b/AuthApp/views.py index 4aa510a..6abc719 100644 --- a/AuthApp/views.py +++ b/AuthApp/views.py @@ -38,7 +38,8 @@ def registration_View(request): @login_required(login_url='/profile/login/') def profile_page_View(request, page_name, id=None): Dict = { - 'page_html': get_profile_page_content_html(request, page_name, id) + 'page_html': get_profile_page_content_html(request, page_name, id), + 'page_name': page_name } t = loader.get_template('pages/profile/p_user_profile.html')