Changeset 8529 for main/waeup.kofa/trunk/src/waeup/kofa/browser/templates
- Timestamp:
- 27 May 2012, 00:28:10 (13 years ago)
- Location:
- main/waeup.kofa/trunk/src/waeup/kofa/browser/templates
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/browser/templates/datacenterimport4page.pt
r7811 r8529 17 17 <input class="btn primary" type="submit" name="finish" 18 18 tal:attributes="value view/back_button" /> 19 </form> 20 <form method="POST" i18n:domain="waeup.kofa" action="@@show"> 19 21 <input class="btn" type="submit" name="showlog" 20 22 tal:attributes="value view/show_button" /> 23 <input type="hidden" name="logname" tal:attributes="value string:datacenter.log" /> 21 24 </form> -
main/waeup.kofa/trunk/src/waeup/kofa/browser/templates/datacenterlogspage.pt
r7811 r8529 3 3 Currently no log files are available. 4 4 </p> 5 <table tal:condition="files" class=" condensed-table">5 <table tal:condition="files" class="table condensed-table"> 6 6 <thead> 7 7 <tr> … … 20 20 tal:attributes="class python: repeat['file'].odd() and 'odd' or 'even'"> 21 21 <td class="text-center"> 22 <form method="POST"> 23 <input i18n:translate="" type="submit" class="btn primary" name="show" 24 tal:attributes="value view/show_button" /> 25 <input type="hidden" name="logname" tal:attributes="value file/name" /> 22 <form method="POST" action="@@show"> 23 <input i18n:translate="" type="submit" class="btn primary" 24 name="show" tal:attributes="value view/show_button" /> 25 <input type="hidden" name="logname" 26 tal:attributes="value file/name" /> 26 27 </form></td> 27 28 <td tal:content="file/name">file.name</td> … … 32 33 </table> 33 34 <form method="POST"> 35 <button class="btn primary"> 36 <img tal:attributes="src static/actionicon_reload.png" /> 37 <span i18n:translate="">Reload Page</span> 38 </button> 34 39 <input i18n:translate="" type="submit" class="btn" name="back" 35 40 tal:attributes="value view/back_button"/> -
main/waeup.kofa/trunk/src/waeup/kofa/browser/templates/datacenterlogsshowfilepage.pt
r7749 r8529 1 <form method="post" >1 <form method="post" class="form-horizontal"> 2 2 <input type="text" name="query" 3 tal:attributes="value view/query" /> 4 <input class="btn primary" type="submit" name="search" 5 tal:attributes="value view/search_button"/> 6 <input class="btn" type="submit" name="back" 7 tal:attributes="value view/back_button"/> 3 tal:attributes="value view/query; placeholder view/placeholder" /> 4 <input class="btn primary" type="submit" name="search" 5 tal:attributes="value view/search_button" /> 6 <input class="btn" type="submit" name="back" 7 tal:attributes="value view/back_button" /> 8 <input type="hidden" name="logname" 9 tal:attributes="value view/filename" /> 8 10 </form> 9 11 10 <div tal:condition="view/ grepresult|nothing">11 <pre tal:content="structure view/ grepresult">12 <div tal:condition="view/result|nothing"> 13 <pre tal:content="structure view/result"> 12 14 GREPRESULT 13 15 </pre>
Note: See TracChangeset for help on using the changeset viewer.