Advertisement
Guest User

Untitled

a guest
Feb 24th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.26 KB | None | 0 0
  1.  
  2. class WlascicielUpdate(UpdateView):
  3.     model = Item
  4.     fields = ['wlasciciel']
  5.     template_name_suffix = '_update_form'
  6.  
  7.     def wypozycz(request):
  8.         Item.wlasciciel = request.user
  9.         Item.save()
  10.         return redirect('/accounts/profile/')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement