Skip to content

Instantly share code, notes, and snippets.

View pjlamb12's full-sized avatar
🏠
Working from home

Preston Lamb pjlamb12

🏠
Working from home
View GitHub Profile
@pjlamb12
pjlamb12 / base_report.html
Created January 6, 2014 19:13
Django template for loop and if statement
{% for rank in ranks %}
{% if rank.person.id == person.id %}
<td>{{rank.get_rank_display}}</td>
<td>{{rank.start_date}}</td>
{% elif forloop.last %}
<td></td>
<td></td>
{% endif %}
{% endfor %}