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.

history.twig 1.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {% for dono in history %}
  2. {% if loop.first %}
  3. <div class="box box2" id="donation_history_box">
  4. <div class="head">
  5. Donation History <a href="#" onclick="$('#donation_history').gtoggle(); return false;" class="brackets">View</a>
  6. </div>
  7. <div class="hidden" id="donation_history">
  8. <table cellpadding="6" cellspacing="1" border="0" class="border" width="100%">
  9. <tbody>
  10. <tr class="colhead_dark">
  11. <td><strong>Source</strong></td>
  12. <td>
  13. <strong>Date</strong>
  14. </td>
  15. <td>
  16. <strong>Amount (EUR)</strong>
  17. </td>
  18. <td>
  19. <strong>Added Points</strong>
  20. </td>
  21. <td>
  22. <strong>Total Points</strong>
  23. </td>
  24. <td style="width: 30%;">
  25. <strong>Reason</strong>
  26. </td>
  27. </tr>
  28. {% endif %}
  29. <tr class="row{{ cycle(['a', 'b'], loop.index0) }}">
  30. <td>
  31. {{ dono.Source }} ({{ dono.AddedBy|user_url }})
  32. </td>
  33. <td>
  34. {{ dono.Time }}
  35. </td>
  36. <td>
  37. {{ dono.Amount }}
  38. </td>
  39. <td>
  40. {{ dono.Rank }}
  41. </td>
  42. <td>
  43. {{ dono.TotalRank }}
  44. </td>
  45. <td>
  46. {{ dono.Reason }}
  47. </td>
  48. </tr>
  49. {% if loop.last %}
  50. </tbody>
  51. </table>
  52. </div>
  53. </div>
  54. {% endif %}
  55. {% endfor %}