Пример #1
0
def show(request, fbID):
	""" display friends that also like the object fbID """
	# TODO LIST := get the list of friends that also like fbID

	likedThing = LikeALike.whoLikes(fbID)
	template = loader.get_template('show.html')
	context = Context({
		'likedThing': likedThing
	})
	return HttpResponse(template.render(context))