1
0
mirror of https://github.com/creyD/asiimov.git synced 2026-06-13 17:42:22 +02:00

Profile and Settings Work

- Added logout button + url
- Added redirect urls
- Fixed bug where the steam name wouldn't show in template
- Added tradeurl to model
- Added simple profile
- Added ability to change own trade url
This commit is contained in:
2020-01-19 11:14:34 +01:00
parent 1f8aaa7277
commit 9d32b12b05
14 changed files with 167 additions and 19 deletions

View File

@@ -11,6 +11,7 @@ urlpatterns = [
path('offers/create', views.offer_create, name='offer_create'),
path('search/<str:filter>', views.search, name='search'),
path('profile/<int:steamID>', views.profile, name='profile'),
path('profile/<int:steamID>/update', views.profile_update, name='profile_update'),
path('profile/me', views.me, name='me'),
path('profile/settings', views.me_settings, name='me_settings'),