Show trades

This commit is contained in:
2023-03-10 00:23:05 +00:00
parent 1e7d8f6c8d
commit fa7ea66c65
12 changed files with 236 additions and 16 deletions

View File

@@ -143,4 +143,10 @@ urlpatterns = [
platforms.PlatformDelete.as_view(),
name="platform_delete",
),
# Trades
path(
"trades/<str:type>/",
platforms.PlatformTrades.as_view(),
name="trades",
),
] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)