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

Side by Side Diff: appengine/monorail/templates/tracker/issue-reindex-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 title]Reindex Issues[end]
2 [define category_css]css/ph_detail.css[end]
3 [include "../framework/master-header.ezt" "showtabs"]
4
5 [if-any read_only][include "../framework/read-only-rejection.ezt"]
6 [else]
7
8 <form action="reindex.do" method="POST" id="form">
9 <input type="hidden" name="token" value="[form_token]">
10 <table>
11 <tr>
12 <td>Start:</td>
13 <td><input type="input" name="start" value="[start]"></td>
14 </tr>
15 <tr>
16 <td>Num:</td>
17 <td><input type="input" name="num" value="[num]"></td>
18 </tr>
19 <tr>
20 <td colspan="2">
21 <input type="submit" id="submit_btn" name="btn" value="Re-index"></td>
22 </tr>
23 <tr>
24 <td><label for="autosubmit">Autosubmit:</label></td>
25 <td><input type="checkbox" name="auto_submit" id="autosubmit"
26 [is auto_submit "True"]checked="checked"[end] ></td>
27 </tr>
28 </table>
29 </form>
30
31 <script type="text/javascript" nonce="[nonce]">
32 runOnLoad(function() {
33 function autosubmit() {
34 if (document.getElementById('autosubmit').checked) {
35 document.getElementById('form').submit();
36 }
37 }
38 if (document.getElementById('autosubmit').checked) {
39 setTimeout(autosubmit, 5000);
40 }
41 });
42 </script>
43
44 [end]
45 [include "../framework/master-footer.ezt"]
OLDNEW
« no previous file with comments | « appengine/monorail/templates/tracker/issue-peek-ajah.ezt ('k') | appengine/monorail/templates/tracker/issue-search-form.ezt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698