Skip to content

Instantly share code, notes, and snippets.

@krisys
Created January 28, 2012 13:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save krisys/1694284 to your computer and use it in GitHub Desktop.
Save krisys/1694284 to your computer and use it in GitHub Desktop.
How template is rendered.
<ul>
{% for p in players %}
<li>
<div> {{ p.name }} </div>
<div> Statistics </div>
<ul>
{% for g in p.games %}
<li> {{p}} scored {{g.runs}} runs </li>
{% endfor %}
</ul>
</li>
{% endfor %}
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment