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

Side by Side Diff: tools/android/loading/cloud/frontend/templates/base.html

Issue 2053363002: tools/android/loading Add link to dashboard and a way to cancel tasks. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@frontendTimeout
Patch Set: Created 4 years, 6 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 {# Copyright 2016 The Chromium Authors. All rights reserved. 1 {# Copyright 2016 The Chromium Authors. All rights reserved.
2 Use of this source code is governed by a BSD-style license that can be 2 Use of this source code is governed by a BSD-style license that can be
3 found in the LICENSE file. 3 found in the LICENSE file.
4 #} 4 #}
5 5
6 <!DOCTYPE html> 6 <!DOCTYPE html>
7 <html> 7 <html>
8 8
9 <head> 9 <head>
10 <meta charset="utf-8"> 10 <meta charset="utf-8">
11 <title>Clovis</title> 11 <title>Clovis</title>
12 <link rel="stylesheet" type="text/css" href="/static/base.css"/> 12 <link rel="stylesheet" type="text/css" href="/static/base.css"/>
13 <link rel="icon" href="/static/crown_icon.png"/> 13 <link rel="icon" href="/static/crown_icon.png"/>
14 </head> 14 </head>
15 15
16 <body> 16 <body>
17 <header> 17 <header>
18 <div class="menu"> 18 <div class="menu">
19 <ul style="border: 1px solid #e7e7e7; background-color: #f3f3f3;"> 19 <ul style="border: 1px solid #e7e7e7; background-color: #f3f3f3;">
20 <li> <div> Clovis </div> 20 <li> <div> Clovis </div>
21 <li> <a href="/">New Task</a> 21 <li> <a href="/">New Job</a>
22 <li> <a href="/list_jobs">Active Jobs</a>
22 <li> <a href="https://chromium.googlesource.com/chromium/src/+/master/tool s/android/loading/cloud/frontend/README.md"> 23 <li> <a href="https://chromium.googlesource.com/chromium/src/+/master/tool s/android/loading/cloud/frontend/README.md">
23 Documentation 24 Documentation
24 </a> 25 </a>
25 </ul> 26 </ul>
26 </div> 27 </div>
27 </header> 28 </header>
28 29
29 {# The main content of the page goes here #} 30 {# The main content of the page goes here #}
30 {% block content %} 31 {% block content %}
31 {% endblock %} 32 {% endblock %}
32 33
33 </body> 34 </body>
34 </html> 35 </html>
OLDNEW
« no previous file with comments | « tools/android/loading/cloud/frontend/clovis_frontend.py ('k') | tools/android/loading/cloud/frontend/templates/log.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698