1 # Create your views here.
1 from django.shortcuts import render_to_response
2
3 def homepage(request):
4 """ List all the workshops and their status.
5 """
6
7 events = Event.objects.all()