Merge "Passing stack_id argument to get_data view"

This commit is contained in:
Jenkins 2014-01-13 11:15:09 +00:00 committed by Gerrit Code Review
commit cec81be5d2
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ class DetailView(tabs.TabView):
def get_context_data(self, **kwargs):
context = super(DetailView, self).get_context_data(**kwargs)
context["stack"] = self.get_data(self.request)
context["stack"] = self.get_data(self.request, **kwargs)
return context
@memoized.memoized_method