codereview/dashboard/views.py
2010-11-19 00:12:29 -05:00

9 lines
306 B
Python
Executable file

from django.shortcuts import render_to_response
from codereview.dashboard.models import Repository
def index(request):
""" List available repositories
"""
repositories = Repository.objects.all()
return render_to_response('dashboard/index.html',
{'repositories': repositories})