I have two models, City and State with State being a ForeignKey relation of City.My CityDetailView url is constructed as:

r'^state/(?P<state>[-\w]+)/city/(?P<slug>[-\w]+)/$'

My CityDetailView called by the above url is:

class CityDetailView(DetailView):
    model = City
    context_object_name = 'city'
    template_name = 'location/city_detail.html'

    def get_queryset(self):
        state = get_object_or_404(State, slug__iexact=self.kwargs['state'])
        return City.objects.filter(state=state)

    def get_context_data(self, **kwargs):
        context = super(CityDetailView, self).get_context_data(**kwargs)
        city = City.objects.get(slug__iexact=self.kwargs['slug'])
        context['guide_list'] = Guide.objects.filter(location=city).annotate(Count('review'), Avg('review__rating'))
        return context

My City model has unique Names for each city. If I try and access a city that occurs in two states I get an error that the get() returned more than one City. I am trying to override the get_queryset() method to filter out only the City models in a single state but it does not seem to be working which is odd because my CityListView is similar but works fine. Any thoughts on what I am missing would be appreciated.

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

I was getting the error on the get_context_data function because I was not filtering the city list there not on the primary view object.

link|improve this answer
feedback

Ok - so why would you use DetailView in this case?

Wouldn't it be better to not use the generic views and just do something like:

def city_detail(request, state_slug, city_slug):
    state = get_object_or_404(State, slug__iexact=state_slug)
    city = get_object_or_404(City, slug__iexact=city_slug)
    render_to_response('location/city_detail.html',
                       {'state':state, 'city':city })
link|improve this answer
Whats wrong with class based generic views? – thesteve Jul 5 '11 at 5:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.