OLD | NEW |
(Empty) | |
| 1 [define category_css]css/ph_detail.css[end] |
| 2 [include "../framework/master-header.ezt" "showtabs"] |
| 3 |
| 4 <h3>Issue export</h3> |
| 5 |
| 6 [if-any import_errors] |
| 7 [# This is actually used to show both errors and progress messages |
| 8 after a successful import.] |
| 9 <div class="error" style="margin-bottom:1em"> |
| 10 Import event log: |
| 11 <ul> |
| 12 [for import_errors] |
| 13 <li>[import_errors]</li> |
| 14 [end] |
| 15 </ul> |
| 16 </div> |
| 17 [end] |
| 18 |
| 19 |
| 20 <form action="import.do" enctype="multipart/form-data" method="POST"> |
| 21 <input type="hidden" name="token" value="[form_token]"> |
| 22 <table cellpadding="3" class="rowmajor vt"> |
| 23 <tr> |
| 24 <th>Format</th> |
| 25 <td style="width:90%">JSON</td> |
| 26 </tr> |
| 27 <tr> |
| 28 <th>File</th> |
| 29 <td><input type="file" name="jsonfile"></td> |
| 30 </tr> |
| 31 <tr> |
| 32 <th>Pre-check only</th> |
| 33 <td><input type="checkbox" name="pre_check_only"></td> |
| 34 </tr> |
| 35 <tr> |
| 36 <th></th> |
| 37 <td><input type="submit" name="btn" value="Submit"></td> |
| 38 </tr> |
| 39 </table> |
| 40 </form> |
| 41 |
| 42 |
| 43 |
| 44 [include "../framework/footer-script.ezt"] |
| 45 [include "../framework/master-footer.ezt"] |
OLD | NEW |