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.

invite-tree-bulkedit.twig 1.3KB

123456789101112131415161718192021222324252627282930
  1. <div class="thin">
  2. {% if message %}
  3. <div class="center">
  4. <p style="color: red; text-align: center;">{{ message }}</p>
  5. </div>
  6. {% endif %}
  7. <form class="manage_form" name="user" action="" method="post">
  8. <input type="hidden" id="action" name="action" value="manipulate_tree" />
  9. <input type="hidden" name="auth" value="{{ auth }}" />
  10. <table class="layout">
  11. <tr>
  12. <td class="label"><strong>UserID</strong></td>
  13. <td><input type="search" size="10" name="id" id="id" /></td>
  14. <td class="label"><strong>Mandatory comment!</strong></td>
  15. <td><input type="search" size="40" name="comment" id="comment" /></td>
  16. </tr>
  17. <tr>
  18. <td class="label"><strong>Action: </strong></td>
  19. <td colspan="2">
  20. <select name="perform">
  21. <option value="comment">Add a staff note to entire tree</option>
  22. <option value="disable">Disable entire tree</option>
  23. <option value="invites">Disable invites privileges</option>
  24. </select>
  25. </td>
  26. <td align="left"><input type="submit" value="Manipulate!" /></td>
  27. </tr>
  28. </table>
  29. </form>
  30. </div>