from django.urls import path from django.conf.urls.static import static from django.contrib.auth import views as auth_views from passion_retro import settings from . import views urlpatterns = [ path('activate///', views.activate, name='activate'), path("login/", views.login, name="login"), path("register/", views.register, name="register"), path("profile/", views.profile, name="profile"), path("profile/update/", views.profile_update, name="profile_update"), path("profile/contributions/", views.contributions, name="contributions"), path("profile//", views.another_profile, name="profile"), path("contribute/", views.contribute, name="contribute"), path("contribute//", views.form_contribute, name="form_contribute"), path("new/feature", views.new_feature_user, name="new_feature_user"), path("item/use//", views.use_item, name="use_item"), path('logout/', auth_views.LogoutView.as_view(), name='logout'), ]