# -*- coding: utf-8 -*- # Object Application # (c) Yunin Ivan [email protected] 2011 from django.conf.urls.defaults import * from views import PropertyListView, PropertyDetailView urlpatterns = patterns( "", url(r"^$", PropertyListView.as_view(), name="property-list"), url(r"^town/(?P<town>\d+)/$", PropertyListView.as_view(), name="town-properties"), url(r"^type/(?P<type>\d+)/$", PropertyListView.as_view(), name="type-properties"), url(r"^(?P<pk>\d+)/$", PropertyDetailView.as_view(), name="property-detail"), )
from django.conf.urls import url from views import ( BasicDetailsFormView, PropertyEditView, SearchView, city_filter, PropertyDetailView, PropertyListView) urlpatterns = [ url(r'^property/add/$', BasicDetailsFormView.as_view(), name='basic'), url(r'^$', SearchView.as_view(), name='search'), url(r'^property/edit/(?P<property_id>[0-9]+)/$', PropertyEditView.as_view(), name='property-edit'), url(r'^property/(?P<city_slug>[\w-]+)/(?P<project_id>[0-9]+)/$', PropertyListView.as_view(), name='property-list'), url(r'^property/(?P<pk>[0-9]+)/$', PropertyDetailView.as_view(), name='property-detail'), url(r'^property_filter/$', city_filter, name='city-filter'), ]