gestiojeux/inventory/urls.py
Guillaume Bertholon ccd8ee9cc9 Add game comments and rework game models
Models are now more structured for number of players, and durations can
be omitted.
2020-12-13 00:12:06 +01:00

34 lines
1 KiB
Python

from django.urls import path
from .views import (
InventoryView,
CategoryListView,
CategoryView,
TagListView,
TagView,
GameListView,
GameView,
AddGameCommentView,
ModifyGameCommentView,
InventorySearchView,
)
app_name = "inventory"
urlpatterns = [
path("", InventoryView.as_view(), name="inventory"),
path("category/", CategoryListView.as_view(), name="category_list"),
path("category/<slug>/", CategoryView.as_view(), name="category"),
path("tag/", TagListView.as_view(), name="tag_list"),
path("tag/<slug>/", TagView.as_view(), name="tag"),
path("game/", GameListView.as_view(), name="game_list"),
path("game/<slug>/", GameView.as_view(), name="game"),
path(
"game/<slug>/add_comment", AddGameCommentView.as_view(), name="add_game_comment"
),
path(
"game/<slug>/modify_comment/<int:comment_id>",
ModifyGameCommentView.as_view(),
name="modify_game_comment",
),
path("search/", InventorySearchView.as_view(), name="search"),
]