Fix error when requesting raw recipes list

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
This commit is contained in:
Paul Eggleton 2013-04-27 10:40:11 +01:00
parent 9df79fe0ef
commit df9a1040c2

View File

@ -63,7 +63,7 @@ urlpatterns = patterns('',
switch_branch_view, name="switch_branch"), switch_branch_view, name="switch_branch"),
url(r'^raw/recipes.txt$', url(r'^raw/recipes.txt$',
PlainTextListView.as_view( PlainTextListView.as_view(
queryset=Recipe.objects.order_by('pn', 'layer'), queryset=Recipe.objects.order_by('pn', 'layerbranch__layer'),
context_object_name='recipe_list', context_object_name='recipe_list',
template_name='layerindex/rawrecipes.txt'), template_name='layerindex/rawrecipes.txt'),
name='recipe_list_raw'), name='recipe_list_raw'),