diff --git a/main/urls.py b/main/urls.py index 22af622a..e7a4affa 100644 --- a/main/urls.py +++ b/main/urls.py @@ -4,7 +4,7 @@ urlpatterns = [ path("", include("home.urls")), path("admin/", admin.site.urls), - path("accounts", include("allauth.urls")), + path("accounts/", include("allauth.urls")), path("profile/", include("profiles.urls")), path("hackathon/", include(("hackathon.urls", "hackathon"), namespace='hackathon')), diff --git a/profiles/templates/profiles/profile.html b/profiles/templates/profiles/profile.html index 09d5f403..4e6faf32 100644 --- a/profiles/templates/profiles/profile.html +++ b/profiles/templates/profiles/profile.html @@ -3,7 +3,39 @@ {% block content %} - - TEST PROFILE PAGE +
{{ user.username }}
+{{ user.email }}
+{{ user.first_name }}
+{{ user.last_name }}
+