Re: Redirect to page with query string

2012-08-19 Thread Melvyn Sopacua
On 19-8-2012 3:29, Barry Morrison wrote: > I apologize, I'm new to Django and Python...I've tried every which way I > know how based on what you described, and I can't find success. > > Here is what I'm at right now: > > http://dpaste.org/7JcGT/ > > I get this error: 'DeleteCommunityImages' obje

Re: Redirect to page with query string

2012-08-19 Thread Barry Morrison
This actually ended up working: http://dpaste.org/U0uY4/ On Saturday, August 18, 2012 5:46:28 PM UTC-7, Melvyn Sopacua wrote: > > On 19-8-2012 2:26, Barry Morrison wrote: > > I have a view that displays images and gives me the ability to delete > the > > images. > > > > View url == /accou

Re: Redirect to page with query string

2012-08-18 Thread Barry Morrison
I apologize, I'm new to Django and Python...I've tried every which way I know how based on what you described, and I can't find success. Here is what I'm at right now: http://dpaste.org/7JcGT/ I get this error: 'DeleteCommunityImages' object has no attribute 'GET' Full traceback: http://dpaste.

Re: Redirect to page with query string

2012-08-18 Thread Melvyn Sopacua
On 19-8-2012 2:26, Barry Morrison wrote: > I have a view that displays images and gives me the ability to delete the > images. > > View url == /account/community/images/1 (1 == event_id) Change to: . Keep passing this return_to parameter around. It helps to use the request context processor s

Redirect to page with query string

2012-08-18 Thread Barry Morrison
I have a view that displays images and gives me the ability to delete the images. View url == /account/community/images/1 (1 == event_id) That url will display all images associated with event_id=1 Each image displays a 'delete' url that calls /account/press/page/delete/{{ image.pk }} -- t