Added an Image for the Grid Thumbnail There is plenty to fix but that's trivial shall polish it at the end of v1 Signed-off-by: Pratyush Desai <pratyush.desai@liberta.casa>
10 lines
381 B
Python
10 lines
381 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('', views.home, name='home'),
|
|
path('games/', views.games, name='games')
|
|
# path('<int:pk>/', views.game_detail, name='game_detail'),
|
|
# path('active-servers/', views.active_servers_view, name='active-servers'),
|
|
# path('games/<str:game_name>/', views.game_servers_view, name='game-servers'),
|
|
] |