Changes between Initial Version and Version 1 of Ticket #9330
- Timestamp:
- Oct 9, 2008, 4:50:22 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #9330 – Description
initial v1 4 4 5 5 View code - 6 6 {{{ 7 7 ids = getIds(id,project_slug)-> returns a list type (eg: ids = [11111L,222222L] 8 8 template_params = {'ids':ids} 9 9 return render_to_response(template, template_params, 10 10 context_instance=RequestContext(request)) 11 11 }}} 12 12 Then in the view.html 13 {{{ 13 14 var ids = {{ ids }}; 14 15 }}} 15 16 But here it is having problems since it is considering as string data type. 16 17