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

Side by Side Diff: appengine/swarming/templates/user_tasks.html

Issue 2362483002: Links to the newui preserve state (Closed) Base URL: git@github.com:luci/luci-py@nicer-botlist
Patch Set: Created 4 years, 3 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
« no previous file with comments | « appengine/swarming/templates/user_task.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 {% extends "swarming/base.html" %} 1 {% extends "swarming/base.html" %}
2 2
3 3
4 {% block headers %} 4 {% block headers %}
5 <style> 5 <style>
6 h1 { 6 h1 {
7 margin-top: 10px; 7 margin-top: 10px;
8 margin-bottom: 10px; 8 margin-bottom: 10px;
9 } 9 }
10 10
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 </script> 118 </script>
119 {% endblock %} 119 {% endblock %}
120 120
121 121
122 {% block body %} 122 {% block body %}
123 {% import 'swarming/bot_view.html' as bot_view %} 123 {% import 'swarming/bot_view.html' as bot_view %}
124 124
125 <h1>Tasks</h1> 125 <h1>Tasks</h1>
126 <a href="/">Back to root</a> 126 <a href="/">Back to root</a>
127 <br/> 127 <br/>
128 <a href="/newui/tasklist">Try out the new task list</a> 128 <a href="{{try_link}}">Try out the new task list UI</a>
129 <p> 129 <p>
130 <form id="filter" name="filter" method="GET"> 130 <form id="filter" name="filter" method="GET">
131 <input type="range" id="limitRange" name="limit" value="{{limit}}" min=10 131 <input type="range" id="limitRange" name="limit" value="{{limit}}" min=10
132 max=500 step=5 onchange="update_limit_text(this.value);" 132 max=500 step=5 onchange="update_limit_text(this.value);"
133 onmousemove="update_limit_text(this.value);" > 133 onmousemove="update_limit_text(this.value);" >
134 <input type="text" id="limitText" value="{{limit}}" maxlength="3" 134 <input type="text" id="limitText" value="{{limit}}" maxlength="3"
135 onchange="update_limit_range(this.value);"> 135 onchange="update_limit_range(this.value);">
136 <input type="submit" value="Set limit"> 136 <input type="submit" value="Set limit">
137 <p> 137 <p>
138 <table class=layout_table title="Select order and filter"> 138 <table class=layout_table title="Select order and filter">
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
365 </tfoot> 365 </tfoot>
366 {% else %} 366 {% else %}
367 {{ next_page_link() }} 367 {{ next_page_link() }}
368 {% endif %} 368 {% endif %}
369 </table> 369 </table>
370 {% else %} 370 {% else %}
371 No data to show for this selection. 371 No data to show for this selection.
372 {% endif %} 372 {% endif %}
373 373
374 {% endblock %} 374 {% endblock %}
OLDNEW
« no previous file with comments | « appengine/swarming/templates/user_task.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698