Guest User

Untitled

a guest
Jul 15th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. def picks(request):
  2. team = get_object_or_404(Team, user=request.user)
  3. all_picks = team.arr
  4. pick = team.arr[team.counter]
  5. return {'pick': pick, 'all_picks': all_picks}
Add Comment
Please, Sign In to add comment