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

Added Functionality To Get Player Inventory

This commit is contained in:
2020-01-19 17:49:44 +01:00
parent 349116141f
commit 3640feb612
10 changed files with 207 additions and 24 deletions

View File

@@ -12,8 +12,11 @@ urlpatterns = [
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'),
path('profile/<int:steamID>/inventory', views.profile_inventory, name='profile_inventory'),
path('profile/<int:steamID>/inventory/update', views.profile_inventory_update, name='profile_inventory_update'),
path('me', views.me, name='me'),
path('me/settings', views.me_settings, name='me_settings'),
path('me/inventory', views.me_inventory, name='me_inventory'),
path('help', views.help, name='help'),
path('imprint', views.imprint, name='imprint'),