[Answer]-Django, how to access form radio button from template

1👍

You need to render the template to context

def exposure_form(request):
    if request.method =='GET':
        form = ExposureForm()
        return render_to_response('exposure-export-wizard.html', {'form': form}, context_instance=RequestContext(request)))

More documentation here.

Leave a comment