Fixes to trade expansion and trade acceptance appearance

This commit is contained in:
badblocks 2025-04-03 17:09:51 -07:00
parent 63e20bace6
commit 01becbee48
20 changed files with 105 additions and 148 deletions

View file

@ -1,6 +1,5 @@
from django.urls import path
from .views import (
ListFriendCodesView,
AddFriendCodeView,
DeleteFriendCodeView,
ChangeDefaultFriendCodeView,
@ -9,8 +8,6 @@ from .views import (
)
urlpatterns = [
# ... other account URLs ...
path("friend-codes/", ListFriendCodesView.as_view(), name="list_friend_codes"),
path("friend-codes/add/", AddFriendCodeView.as_view(), name="add_friend_code"),
path("friend-codes/edit/<int:pk>/", EditFriendCodeView.as_view(), name="edit_friend_code"),
path("friend-codes/delete/<int:pk>/", DeleteFriendCodeView.as_view(), name="delete_friend_code"),