У запиті Django у мене є таке:
POST:<QueryDict: {u'section': [u'39'], u'MAINS': [u'137']}>
Як отримати значення section
і MAINS
?
if request.method == 'GET':
qd = request.GET
elif request.method == 'POST':
qd = request.POST
section_id = qd.__getitem__('section') or getlist....