diff options
author | luxagraf <sng@luxagraf.net> | 2013-04-23 23:29:02 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2013-04-23 23:29:02 -0400 |
commit | 2e0020d91c08fe024d39a5ad646aefb5e0eeac7f (patch) | |
tree | dc8c42c5c5ab0fd5abd6e51f5c09085adb69dcd4 /app/photos | |
parent | 7d2e5948b202973efa69fc30859ddbe0ff9b00b1 (diff) |
fixed bug in details views
Diffstat (limited to 'app/photos')
-rw-r--r-- | app/photos/detail_urls.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/photos/detail_urls.py b/app/photos/detail_urls.py index 3acd139..7619220 100644 --- a/app/photos/detail_urls.py +++ b/app/photos/detail_urls.py @@ -8,5 +8,5 @@ detail_dict = { } urlpatterns = patterns('', - (r'^(?P<object_id>\d+)/$', DetailView.as_view(model=Photos,template_name='details/photo.html')), + (r'^(?P<object_id>\d+)/$', DetailView.as_view(model=Photo,template_name='details/photo.html')), ) |