Example #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))
Example #2
0
def index(request):
	""" list all the things that the current user likes, """\
	""" grouped by category """

	# hard coded test data... lol!
	#categories = [
	#		{
	#			'id': '0',
	#			'display_name': 'Fruits/oranges',
	#			'members': [
	#				{
	#					'id': '1',
	#					'display_name': 'blood',
	#					'count': '23' # the number of friends that also like this
	#				},
	#				{
	#					'id': '2',
	#					'display_name': 'fancy italian one',
	#					'count': '3'
	#				}
	#			],
	#		},
	#		{
	#			'id': '3',
	#			'display_name': 'Fruits/apples',
	#			'members': [
	#				{
	#					'id': '4',
	#					'display_name': 'pink lady',
	#					'count': '5'
	#				},
	#				{
	#					'id': '5',
	#					'display_name': 'golden delicious',
	#					'count': '7'
	#				}
	#			]
	#		}
	#	]

	categories = LikeALike.getListOfDicOfIntersections()

	# TODO use a template to render LIST
	#return HttpResponse("index, listing categories.")
	template = loader.get_template('index.html')
	context = Context({
		#'categories': categories
		'categories': categories
	})
	return HttpResponse(template.render(context))
Example #3
0
import LikeALike as t

print t.getListOfDicOfIntersections()