Skip to content

Instantly share code, notes, and snippets.

@mstepniowski
Created March 29, 2009 21:49
Show Gist options
  • Save mstepniowski/87528 to your computer and use it in GitHub Desktop.
Save mstepniowski/87528 to your computer and use it in GitHub Desktop.
# Create your views here.
from django.shortcuts import render_to_response
from gallery.models import Gallery
def gallery_list(request):
galleries = Gallery.objects.all()
return render_to_response('gallery/gallery_list.html', {'galleries': galleries})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment