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

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

Issue 2279303003: Add link to new ui and feedback button (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/luci-py@master
Patch Set: use px 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/restricted_botslist.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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 } 117 }
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/>
128 <a href="/newui/tasklist">Try out the new task list</a>
127 <p> 129 <p>
128 <form id="filter" name="filter" method="GET"> 130 <form id="filter" name="filter" method="GET">
129 <input type="range" id="limitRange" name="limit" value="{{limit}}" min=10 131 <input type="range" id="limitRange" name="limit" value="{{limit}}" min=10
130 max=500 step=5 onchange="update_limit_text(this.value);" 132 max=500 step=5 onchange="update_limit_text(this.value);"
131 onmousemove="update_limit_text(this.value);" > 133 onmousemove="update_limit_text(this.value);" >
132 <input type="text" id="limitText" value="{{limit}}" maxlength="3" 134 <input type="text" id="limitText" value="{{limit}}" maxlength="3"
133 onchange="update_limit_range(this.value);"> 135 onchange="update_limit_range(this.value);">
134 <input type="submit" value="Set limit"> 136 <input type="submit" value="Set limit">
135 <p> 137 <p>
136 <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
363 </tfoot> 365 </tfoot>
364 {% else %} 366 {% else %}
365 {{ next_page_link() }} 367 {{ next_page_link() }}
366 {% endif %} 368 {% endif %}
367 </table> 369 </table>
368 {% else %} 370 {% else %}
369 No data to show for this selection. 371 No data to show for this selection.
370 {% endif %} 372 {% endif %}
371 373
372 {% endblock %} 374 {% endblock %}
OLDNEW
« no previous file with comments | « appengine/swarming/templates/restricted_botslist.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698