Skip to content

Instantly share code, notes, and snippets.

@BlackPie
Created April 20, 2016 07:17
Show Gist options
  • Save BlackPie/c86b4fbce12b05c3e60132af3400bf3d to your computer and use it in GitHub Desktop.
Save BlackPie/c86b4fbce12b05c3e60132af3400bf3d to your computer and use it in GitHub Desktop.
temp
{% extends "base/base.html" %}
{% block content %}
<h1>Leaderboard</h1>
<br><br><br>
<h2>Total tree pledge</h2>
<ol>
{% for profile in tree_pledges_toplist %}
<li>{{ profile.user.username}} - {{ profile.total_tree_pledges}}</li>
{% endfor %}
</ol>
<br><br>
<h2>Total tree length</h2>
<ol>
{% for profile in tree_length_toplist %}
<li>{{ profile.user.username}} - {{ profile.tree_length}}</li>
{% endfor %}
</ol>
{% endblock%}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment