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.

delete.twig 1.1KB

1234567891011121314151617181920212223242526
  1. <div class="thin center">
  2. <div class="box" style="width: 600px; margin: 0px auto;">
  3. <div class="head colhead">
  4. Delete collage
  5. </div>
  6. <div class="pad">
  7. <form class="delete_form" name="collage" action="collages.php" method="post">
  8. <input type="hidden" name="action" value="take_delete" />
  9. <input type="hidden" name="auth" value="{{ auth }}" />
  10. <input type="hidden" name="collageid" value="{{ id }}" />
  11. {% if is_personal %}
  12. <div class="alertbar" style="margin-bottom: 1em;">
  13. <strong>Warning: This is a personal collage. If you delete this collage, it <em>cannot</em> be recovered!</strong>
  14. </div>
  15. {% endif %}
  16. <div class="field_div">
  17. <strong>Reason: </strong>
  18. <input type="text" name="reason" size="40" />
  19. </div>
  20. <div class="submit_div">
  21. <input value="Delete" type="submit" />
  22. </div>
  23. </form>
  24. </div>
  25. </div>
  26. </div>