def unsubscribe_all(request, podcast): """ unsubscribe all of the user's devices from the podcast """ user = request.user unsubscribe_podcast_all(podcast, user) return HttpResponseRedirect(get_podcast_link_target(podcast))