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.

edit-buffer.twig 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <tr>
  2. <td class="label tooltip" title="Upload amount in bytes. Also accepts e.g. +20GB or -35.6364MB on the end.">Uploaded:</td>
  3. <td>
  4. <input type="hidden" name="OldUploaded" value="{{ up }}" />
  5. <input type="text" size="20" name="Uploaded" value="{{ up }}" />
  6. </td>
  7. </tr>
  8. <tr>
  9. <td class="label tooltip" title="Download amount in bytes. Also accepts e.g. +20GB or -35.6364MB on the end.">Downloaded:</td>
  10. <td>
  11. <input type="hidden" name="OldDownloaded" value="{{ down }}" />
  12. <input type="text" size="20" name="Downloaded" value="{{ down }}" />
  13. </td>
  14. </tr>
  15. <tr>
  16. <td class="label tooltip" title="Bonus Points.">Bonus Points:</td>
  17. <td>
  18. <input type="hidden" name="OldBonusPoints" value="{{ bonus }}" />
  19. <input type="text" size="20" name="BonusPoints" value="{{ bonus }}" />
  20. </td>
  21. </tr>
  22. <tr>
  23. <td class="label tooltip" title="Personal Collages.">Personal Collages:</td>
  24. <td>
  25. <input type="hidden" name="OldCollages" value="{{ collages }}" />
  26. <input type="text" size="20" name="Collages" value="{{ collages }}" />
  27. {% if donor_collages > 0 %}
  28. <p>Donor perks provide an extra {{ donor_collages }} collages <em>in addition</em> to this amount.</p>
  29. {% endif %}
  30. </td>
  31. </tr>
  32. <tr>
  33. <td class="label tooltip" title="Enter a username.">Transfer buffer from user:</td>
  34. <td>
  35. <input type="text" size="16" name="MergeStatsFrom" /> Upload and download from the specified user will be drained into this user.
  36. Do <b>not</b> edit user upload/down and transfer buffer at the same time.
  37. </td>
  38. </tr>