Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

access particular array index in html template django

Remember that the dot notation in a Django template is used for four different notations in Python. In a template, foo.bar can mean any of:

foo[bar]       # dictionary lookup
foo.bar        # attribute lookup
foo.bar()      # method call
foo[bar]       # list-index lookup
 
PREVIOUS NEXT
Tagged: #access #array #index #html #template #django
ADD COMMENT
Topic
Name
9+5 =