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

Side by Side Diff: appengine/swarming/templates/restricted_bot.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
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 28 matching lines...) Expand all
39 } 39 }
40 40
41 </style> 41 </style>
42 {% endblock %} 42 {% endblock %}
43 43
44 44
45 {% block body %} 45 {% block body %}
46 {% import 'swarming/bot_view.html' as bot_view %} 46 {% import 'swarming/bot_view.html' as bot_view %}
47 <h1>Bot details</h1> 47 <h1>Bot details</h1>
48 <a href="/restricted/bots">Back to bots list</a> 48 <a href="/restricted/bots">Back to bots list</a>
49 <br/>
50 <a href="{{try_link}}">Try out the new bot page UI</a>
49 <p> 51 <p>
50 52
51 {% if bot %} 53 {% if bot %}
52 <table class="property_table"> 54 <table class="property_table">
53 <tbody> 55 <tbody>
54 <tr title="The bot id is what uniquely identify the bot."> 56 <tr title="The bot id is what uniquely identify the bot.">
55 <td>ID</td> 57 <td>ID</td>
56 <td>{{bot.id}}</td> 58 <td>{{bot.id}}</td>
57 </tr> 59 </tr>
58 <tr title="How the bot is authenticated by the server."> 60 <tr title="How the bot is authenticated by the server.">
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 Next page</a> 218 Next page</a>
217 {% endif %} 219 {% endif %}
218 220
219 {% else %} 221 {% else %}
220 222
221 Bot {{bot_id}} not found. 223 Bot {{bot_id}} not found.
222 224
223 {% endif %} 225 {% endif %}
224 226
225 {% endblock %} 227 {% endblock %}
OLDNEW
« no previous file with comments | « appengine/swarming/handlers_frontend.py ('k') | appengine/swarming/templates/restricted_botslist.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698