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.

bonus-pool.twig 1.5KB

12345678910111213141516171819202122232425262728293031
  1. <div class="thin">
  2. <div class="box pad">
  3. <h3>The <b>{{ pool.name }}</b> pool is open for business!</h3>
  4. <div>Donate points for greater good! The points you give here will be distributed out to everyone
  5. who participates in the contest. You can give as many times as you want until the end.</div>
  6. <br />
  7. <h3>The grand total currently stands at {{ pool.total|number_format }} points</h3>
  8. <form class="pool_form" name="pool" id="poolform" action="bonus.php?action=donate" method="post">
  9. <table>
  10. <thead>
  11. <tr><th>Current BP</th><th>Donated BP</th></tr>
  12. <thead>
  13. <tbody>
  14. <tr>
  15. <td>{{ points|number_format }}</td>
  16. <td><input type="text" width="10" name="donate" />
  17. <input type="hidden" name="poolid" value="{{ pool.bonus_pool_id }}"/>
  18. <input type="hidden" name="userid" value="{{ user_id }}"/>
  19. <input type="hidden" name="auth" value="{{ auth }}"/>
  20. </td>
  21. </tr>
  22. <tr>
  23. <td></td>
  24. <td><input type="submit" value="Donate" /></td>
  25. </tr>
  26. </tbody>
  27. </table>
  28. <div><small>The fine print: obviously, you cannot donate more BP than you currently have. There are no refunds. Some handling fees apply.</small></div>
  29. </form>
  30. </div>
  31. </div>