1 | <%inherit file="/base.mako"/> |
---|
2 | <%namespace file="/message.mako" import="render_msg" /> |
---|
3 | |
---|
4 | %if message: |
---|
5 | ${render_msg( message, status )} |
---|
6 | %endif |
---|
7 | |
---|
8 | <div class="toolForm"> |
---|
9 | <div class="toolFormTitle">Create a new form definition</div> |
---|
10 | <div class="toolFormBody"> |
---|
11 | <form name="create_form" action="${h.url_for( controller='forms', action='create_form', create_form=True )}" enctype="multipart/form-data" method="post" > |
---|
12 | %for label, input in inputs: |
---|
13 | <div class="form-row"> |
---|
14 | <label>${label}</label> |
---|
15 | ${input.get_html()} |
---|
16 | <div style="clear: both"></div> |
---|
17 | </div> |
---|
18 | %endfor |
---|
19 | <div class="form-row"> |
---|
20 | <input type="submit" name="create_form_button" value="Add fields"/> |
---|
21 | </div> |
---|
22 | </form> |
---|
23 | </div> |
---|
24 | </div> |
---|