| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 %} |
| OLD | NEW |