13 lines
403 B
Python
13 lines
403 B
Python
from mitxmako.shortcuts import render_to_response
|
|
from keystore import Location
|
|
from keystore.django import keystore
|
|
from django.contrib.auth.decorators import login_required
|
|
|
|
|
|
@login_required
|
|
def calendar(request, org, course):
|
|
weeks = keystore.get_children_for_item(
|
|
Location(['i4x', org, course, 'Course', 'course'])
|
|
)
|
|
return render_to_response('calendar.html', {'weeks': weeks})
|