Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Side by Side Diff: appengine/monorail/templates/tracker/issue-import-page.ezt

Issue 1868553004: Open Source Monorail (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Rebase Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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"]
OLDNEW
« no previous file with comments | « appengine/monorail/templates/tracker/issue-hovercard.ezt ('k') | appengine/monorail/templates/tracker/issue-list-body.ezt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698