| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 </script> | 62 </script> |
| 63 {% endblock %} | 63 {% endblock %} |
| 64 | 64 |
| 65 | 65 |
| 66 {% block body %} | 66 {% block body %} |
| 67 {% import 'swarming/bot_view.html' as bot_view %} | 67 {% import 'swarming/bot_view.html' as bot_view %} |
| 68 | 68 |
| 69 <h1>Known bots</h1> | 69 <h1>Known bots</h1> |
| 70 <a href="/">Back to root</a> | 70 <a href="/">Back to root</a> |
| 71 <br/> | 71 <br/> |
| 72 <a href="/newui/botlist">Try out the new bot list</a> | 72 <a href="{{try_link}}">Try out the new bot list UI</a> |
| 73 <p/> | 73 <p/> |
| 74 <form id="filter_and_order" name="filter_and_order" method="GET"> | 74 <form id="filter_and_order" name="filter_and_order" method="GET"> |
| 75 <table> | 75 <table> |
| 76 <tr> | 76 <tr> |
| 77 <td> | 77 <td> |
| 78 <table class=property_table> | 78 <table class=property_table> |
| 79 <tbody> | 79 <tbody> |
| 80 <tr> | 80 <tr> |
| 81 <td>Current bot version</td> | 81 <td>Current bot version</td> |
| 82 <td>{{current_version[:8]}}</td> | 82 <td>{{current_version[:8]}}</td> |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 {% endfor %} | 177 {% endfor %} |
| 178 </tbody> | 178 </tbody> |
| 179 </table> | 179 </table> |
| 180 | 180 |
| 181 {% if cursor %} | 181 {% if cursor %} |
| 182 <p/> | 182 <p/> |
| 183 <a href="/restricted/bots?limit={{limit}}&sort_by={{sort_by}}&cursor={{cursor|ur
lencode}}&dimensions={{dimensions|urlencode}}">Next page</a> | 183 <a href="/restricted/bots?limit={{limit}}&sort_by={{sort_by}}&cursor={{cursor|ur
lencode}}&dimensions={{dimensions|urlencode}}">Next page</a> |
| 184 {% endif %} | 184 {% endif %} |
| 185 | 185 |
| 186 {% endblock %} | 186 {% endblock %} |
| OLD | NEW |