6 lines
134 B
Python
6 lines
134 B
Python
from mitxmako.shortcuts import render_to_response
|
|
|
|
|
|
def calendar(request, course):
|
|
return render_to_response('calendar.html', {})
|