First commit
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
"""
|
||||
URLs de l'application properties.
|
||||
"""
|
||||
from django.urls import path
|
||||
from . import views
|
||||
|
||||
app_name = 'properties'
|
||||
|
||||
urlpatterns = [
|
||||
path('', views.PropertyListView.as_view(), name='list'),
|
||||
path('bien/<slug:slug>/', views.PropertyDetailView.as_view(), name='detail'),
|
||||
path('contact/', views.ContactView.as_view(), name='contact'),
|
||||
]
|
||||
Reference in New Issue
Block a user