BioTorrents.de’s version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

stats.twig 645B

1234567891011121314151617181920
  1. <div class="box box_info box_userinfo_donor_stats">
  2. <div class="head colhead_dark">Donor Statistics</div>
  3. <ul class="stats nobullet">
  4. {% if not is_donor %}
  5. {% if is_self %}
  6. <li>You haven't donated.</li>
  7. {% else %}
  8. <li>This user hasn't donated.</li>
  9. {% endif %}
  10. {% else %}
  11. {% if is_mod or is_self %}
  12. <li>Total donor points: {{ total_rank }}</li>
  13. {% endif %}
  14. <li>Current donor rank: {{ current|raw }}</li>
  15. <li>Leaderboard position: {{ leaderboard }}</li>
  16. <li>Last donated: {{ last|time_diff }}
  17. <li>Rank expires: {{ expiry|raw }}
  18. {% endif %}
  19. </ul>
  20. </div>