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