Opened 16 years ago

Last modified 16 years ago

#9330 closed

Template params - list type — at Initial Version

Reported by: Souparnika <nishakv@…> Owned by: nobody
Component: Uncategorized Version: 1.0
Severity: Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Hi,

When I try to pass a list variable as one of template params from one of my view using render_to_response method in the view it is getting as a string data type.

View code -

ids = getIds(id,project_slug)-> returns a list type (eg: ids = [11111L,222222L]
template_params = {'ids':ids}
return render_to_response(template, template_params,

context_instance=RequestContext(request))

Then in the view.html
var ids = {{ ids }};

But here it is having problems since it is considering as string data type.

Any suggestions will be very usefull.

Thanks,
Nisha.

Change History (0)

Note: See TracTickets for help on using tickets.
Back to Top