urls.py 402 B

12345678910111213
  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3. from django.conf.urls import patterns, url
  4. from .views import HousingView
  5. urlpatterns = patterns(
  6. '',
  7. # This is part of the generic configuration interface (the "name" is
  8. # the same as the "backend_name" of the model).
  9. url(r'^(?P<pk>\d+)$', HousingView.as_view(template_name="housing/housing.html"), name="details"),
  10. )