PageRenderTime 4ms CodeModel.GetById 1ms RepoModel.GetById 0ms app.codeStats 0ms

/templates/history/clone.mako

https://bitbucket.org/cistrome/cistrome-harvard/
Mako | 27 lines | 26 code | 1 blank | 0 comment | 2 complexity | 1bd44f2407a2db66d593c76c9199d19b MD5 | raw file
  1. <% _=n_ %>
  2. <%inherit file="/base.mako"/>
  3. <%def name="title()">Clone History</%def>
  4. <div class="toolForm">
  5. <div class="toolFormTitle">Clone History</div>
  6. <div class="toolFormBody">
  7. <form action="${h.url_for( controller='history', action='clone' )}" method="post" >
  8. <div class="form-row">
  9. %if id_argument is not None:
  10. <input type="hidden" name="id" value="${id_argument}">
  11. %endif
  12. You can clone the history such that the clone will include all items in the original
  13. history, or you can eliminate the original history's deleted items from the clone.
  14. </div>
  15. <div class="form-row">
  16. <input type="radio" name="clone_choice" value="activatable"> Clone all history items, including deleted items
  17. </div>
  18. <div class="form-row">
  19. <input type="radio" name="clone_choice" value="active"> Clone only items that are not deleted
  20. </div>
  21. <div class="form-row">
  22. <input type="submit" name="clone_choice_button" value="Clone">
  23. </div>
  24. </form>
  25. </div>
  26. </div>