1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
---|
2 | <html xmlns="http://www.w3.org/1999/xhtml" |
---|
3 | xmlns:py="http://genshi.edgewall.org/" |
---|
4 | xmlns:xi="http://www.w3.org/2001/XInclude"> |
---|
5 | <xi:include href="layout.html" /> |
---|
6 | <xi:include href="atom_functions.html" /> |
---|
7 | <xi:include href="../utils.html" /> |
---|
8 | <head> |
---|
9 | <title py:content="c.title">title</title> |
---|
10 | </head> |
---|
11 | <body class="submit"> |
---|
12 | <panelTab>Editor</panelTab> |
---|
13 | <div id="contents"> |
---|
14 | <div class="metadata"> |
---|
15 | <a href="${h.url_for(controller='atom_editor/listatom',action='atomHome')}">Home</a> |
---|
16 | <h3> $c.title |
---|
17 | <span py:replace="helpIcon('granulite_help', 'div')"/> |
---|
18 | <div id="granulite_help" class="hidden" > |
---|
19 | <div class="helptxt"> |
---|
20 | $g.granulite_help |
---|
21 | </div> |
---|
22 | </div> |
---|
23 | </h3> |
---|
24 | <div class="error" py:if="c.xml"> |
---|
25 | $c.xml |
---|
26 | </div> |
---|
27 | <h2> |
---|
28 | <div class="headingblock"> |
---|
29 | ${Markup(h.form(h.url(controller='atom_editor/editatom', action='upload'), multipart=True))} |
---|
30 | <table> |
---|
31 | <tr> |
---|
32 | <td class="cellhead"> |
---|
33 | Granulite file: |
---|
34 | <span py:replace="helpIcon('granulite_file_help', 'tr')"/> |
---|
35 | </td> |
---|
36 | <td> |
---|
37 | ${Markup(h.file_field('upload_granulite', size="80"))} |
---|
38 | </td> |
---|
39 | </tr> |
---|
40 | <tr id="granulite_file_help" class="hidden" > |
---|
41 | <td class="helptxt" colspan="2">${Markup(g.example_granulite)}</td> |
---|
42 | </tr> |
---|
43 | <div py:replace="UploadCSMLOrCDMLFileRows('dummy')"/> |
---|
44 | </table> |
---|
45 | ${Markup(h.end_form())} |
---|
46 | </div> |
---|
47 | </h2> |
---|
48 | </div> |
---|
49 | </div> |
---|
50 | </body> |
---|
51 | </html> |
---|