Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was reading some code in the django tutorial and i found this

<ul>
{% for athlete in athlete_list %}
   <li>{{ athlete.name }}</li>
{% endfor %}
</ul>

what is athlete?, where can I find mor information about how to use this?

I searched for list, but they seem to have restricted functions such as append and index.

share|improve this question
Yikes, your formatting is horrible. I don't even know what to do to try to fix it, since you've splattered HTML all over the place. Please use the standard markdown code formatting to make your code legible -- prepend four spaces to every line of a code block. Remove the hand-written HTML and the needless back ticks, select all the code, then hit the {} button in the editor. – sarnold Jul 3 '12 at 2:30
Thanks, that is very helpful – user1467736 Jul 3 '12 at 2:44

1 Answer

up vote 1 down vote accepted

athlete_list is a context variable that has been passed to the template.

athlete is an element of athlete_list. In this case, it looks like athlete is a model object with a name property. In which case, athlete_list is probably an athlete query set, or list of objects.

Have a look at the Django template tag reference for more information.

share|improve this answer
Thanks a lot, indeed it is a list of objects. – user1467736 Jul 3 '12 at 2:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.