diff options
author | luxagraf <sng@luxagraf.net> | 2023-06-29 15:39:38 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2023-06-29 15:39:38 -0500 |
commit | 1ebcea727da09a1b16853c7bb3a5523cf04d9ffc (patch) | |
tree | 24891eff48d9876248f6a0a0133fb4ecc638377d /app/deals/urls.py | |
parent | 67fbb0244bd401b360d5d921be6005a44105130e (diff) |
added some features
Diffstat (limited to 'app/deals/urls.py')
-rw-r--r-- | app/deals/urls.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/app/deals/urls.py b/app/deals/urls.py new file mode 100644 index 0000000..2a9bf4a --- /dev/null +++ b/app/deals/urls.py @@ -0,0 +1,13 @@ +from django.urls import path, re_path + +from . import views + +app_name = "deals" + +urlpatterns = [ + path( + r'<str:pk>', + views.DealDetailView.as_view(), + name="detail" + ), +] |