Skip to content

Instantly share code, notes, and snippets.

@emilepetrone
Created October 23, 2011 03:56
Show Gist options
  • Save emilepetrone/1306852 to your computer and use it in GitHub Desktop.
Save emilepetrone/1306852 to your computer and use it in GitHub Desktop.
def like_picture(request):
picture_id = request.POST.get('id', False)
picture = get_object_or_404(Picture, id=picture_id)
if picture.user == request.user:
return HttpResponseRedirect(reverse('home'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment