| Line | |
|---|
| 1 | <!DOCTYPE html |
|---|
| 2 | PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" |
|---|
| 3 | "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
|---|
| 4 | <html xmlns="http://www.w3.org/1999/xhtml" |
|---|
| 5 | xmlns:py="http://genshi.edgewall.org/" |
|---|
| 6 | xmlns:xi="http://www.w3.org/2001/XInclude"> |
|---|
| 7 | <xi:include href="layout.html" /> |
|---|
| 8 | <xi:include href="macros.html" /> |
|---|
| 9 | |
|---|
| 10 | <head> |
|---|
| 11 | <title py:if="title">$title</title> |
|---|
| 12 | </head> |
|---|
| 13 | |
|---|
| 14 | <body> |
|---|
| 15 | <div id="content" class="wiki"> |
|---|
| 16 | <h1>${_('Create new page')}</h1> |
|---|
| 17 | <form id="edit" action="" method="get"> |
|---|
| 18 | |
|---|
| 19 | <div id="changeinfo1"> |
|---|
| 20 | <div class="field"> |
|---|
| 21 | <label>${_('Page title')}<br /> |
|---|
| 22 | <input id="title" type="text" name="title" size="60" value="" /> |
|---|
| 23 | </label> |
|---|
| 24 | </div> |
|---|
| 25 | <br/> |
|---|
| 26 | <div class="field"> |
|---|
| 27 | <label>${_('Page URL')}<br /> |
|---|
| 28 | <input id="page" type="text" name="page" size="60" value="" /> |
|---|
| 29 | </label> |
|---|
| 30 | </div> |
|---|
| 31 | <br/> |
|---|
| 32 | <div class="field"> |
|---|
| 33 | <label>${_('Page parent')}<br /> |
|---|
| 34 | <input id="parent-fake" type="text" name="parent-fake" size="60" value="${node.navpath}" disabled="1"/> |
|---|
| 35 | <input id="parent" type="hidden" name="parent" size="60" value="${node.navpath}" /> |
|---|
| 36 | </label> |
|---|
| 37 | </div> |
|---|
| 38 | </div> |
|---|
| 39 | <div class="buttons"> |
|---|
| 40 | <input type="submit" id="create" name="create" value="${_('Create page')}" /> |
|---|
| 41 | </div> |
|---|
| 42 | </form> |
|---|
| 43 | </div> |
|---|
| 44 | </body> |
|---|
| 45 | |
|---|
| 46 | |
|---|
| 47 | |
|---|
| 48 | </html> |
|---|
Note: See
TracBrowser
for help on using the repository browser.