You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to django...@googlegroups.com
c = Name.objects.get(trans_id = request.GET.get('trans_id')) if c: u = Name() c.paid = 1 u.save()
This isnt saving to same object but adding a blank row and not even changing the boolean value field of paid, someone please point out my error that I cannot see
MikeKJ
unread,
Apr 5, 2012, 6:53:26 AM4/5/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to django...@googlegroups.com
Gaaah another brain fart, forget this one too
kenneth gonsalves
unread,
Apr 5, 2012, 6:56:38 AM4/5/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to django...@googlegroups.com
On Thu, 2012-04-05 at 03:51 -0700, MikeKJ wrote: > c = Name.objects.get(trans_id = request.GET.get('trans_id')) > if c: > u = Name() > c.paid = 1 > u.save()
if c: c.paid=1 c.save() -- regards Kenneth Gonsalves