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.

admin-panel.twig 2.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <table class="layout" id="donation_box">
  2. <tr class="colhead">
  3. <td colspan="2">
  4. Donations
  5. </td>
  6. </tr>
  7. <tr><td></td><td><b>Manual Donation</b></td></tr>
  8. <tr>
  9. <td class="label">Value:</td>
  10. <td>
  11. <input type="text" name="donation_value" />
  12. <select name="donation_currency">
  13. <option value="EUR">EUR</option>
  14. <option value="USD">USD</option>
  15. <option value="XBT" selected="selected">XBT</option>
  16. </select>
  17. </td>
  18. </tr>
  19. <tr>
  20. <td class="label">Reason:</td>
  21. <td><input type="text" class="wide_input_text" name="donation_reason" /></td>
  22. </tr>
  23. <tr>
  24. <td>&nbsp;</td>
  25. <td>
  26. <input type="submit" name="donor_points_submit" value="Add donation" />
  27. </td>
  28. </tr>
  29. <tr>
  30. <td>&nbsp;</td>
  31. <td><b>Donation point adjustement</b></td>
  32. </tr>
  33. <tr>
  34. <td colspan="2">Use this section only when manually adjusting
  35. values. If crediting donations normally, use the Manual Donation
  36. section. Active points represent the donation amount that has
  37. not yet expired. Total points represent the combined amount of
  38. all donations and never expire. These are used to determine the
  39. Special Rank and Leaderboard placement of a member.</td>
  40. </tr>
  41. <tr>
  42. <td class="label">Special Rank:</td>
  43. <td><b> {{ user.specialDonorRank }} </b></td>
  44. </tr>
  45. <tr>
  46. <td class="label">Adjust active points:</td>
  47. <td>
  48. <input type="text" width="4" name="donor_rank_delta" value="0" />
  49. (add or subtract) currently: <b>{{ user.donorRank }}</b>
  50. </td>
  51. </tr>
  52. <tr>
  53. <td class="label">Adjust total points:</td>
  54. <td>
  55. <input type="text" width="4" name="total_donor_rank_delta" value="0" />
  56. (add or subtract) currently: <b>{{ user.totalDonorRank }}</b>
  57. </td>
  58. </tr>
  59. <tr>
  60. <td class="label">Reason:</td>
  61. <td><input type="text" class="wide_input_text" name="reason" /></td>
  62. </tr>
  63. <tr>
  64. <td>&nbsp;</td>
  65. <td align="right" colspan="2">
  66. <input type="submit" name="donor_values_submit" value="Change point values" />
  67. </td>
  68. </tr>
  69. </table>