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

Side by Side Diff: infra/tools/antibody/templates/tbr_by_user.jinja

Issue 1235373004: Added script to generate stats on a git checkout (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@new_antibody_db_schema
Patch Set: Rebase Created 5 years, 5 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 | « infra/tools/antibody/templates/stats.jinja ('k') | infra/tools/antibody/test/antibody_test.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html lang="en"> 2 <html lang="en">
3 <head> 3 <head>
4 <meta charset="UTF-8" /> 4 <meta charset="UTF-8" />
5 5
6 <script 6 <script
7 src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"> 7 src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js">
8 </script> 8 </script>
9 <script src="static/bootstrap.min.js"></script> 9 <script src="static/bootstrap.min.js"></script>
10 <script src="static/tbr_by_user.js"></script> 10 <script src="static/tbr_by_user.js"></script>
11 <link rel="stylesheet" href="static/bootstrap.min.css"> 11 <link rel="stylesheet" href="static/bootstrap.min.css">
12 <link rel="stylesheet" href="static/bootstrap-table.css"> 12 <link rel="stylesheet" href="static/bootstrap-table.css">
13 <link rel="stylesheet" type="text/css" href="static/tbr_by_user.css"> 13 <link rel="stylesheet" type="text/css" href="static/tbr_by_user.css">
14 14
15 15
16 <title>{{ title }}</title> 16 <title>{{ title }}</title>
17 <meta name="description" content="{{ description }}" /> 17 <meta name="description" content="{{ description }}" />
18 </head> 18 </head>
19 19
20 20
21 21
22 <body> 22 <body>
23 23
24 <div class="nav navbar-fixed-top"> 24 <div class="nav navbar-fixed-top">
25 <div class="container"> 25 <div class="container">
26 <ul class="pull-left"> 26 <ul class="pull-left">
27 <li><a href="{{ antibody_main_link }}">{{ page_header_text }}</a></li> 27 <li><a href="{{ antibody_main_link }}">{{ page_header_text }}</a></li>
28 <li><a href="{{ tbr_by_user_link }}">{{ to_be_reviewed }}</a></li> 28 <li><a href="{{ tbr_by_user_link }}">{{ to_be_reviewed }}</a></li>
29 <li><a href="{{ stats_link }}">{{ stats }}</a></li>
30 <li><a href="{{ leaderboard_link }}">{{ leaderboard }}</a></li>
29 </ul> 31 </ul>
30 <ul class="pull-right"> 32 <ul class="pull-right">
31 <li><p class="gen_time">Generated {{ generation_time }} UTC</p></li> 33 <li><p class="gen_time">Generated {{ generation_time }} UTC</p></li>
34 </ul>
35 <ul class="pull-right">
36 <li><p class="gen_time">Generated {{ generation_time }} UTC</p></li>
32 </ul> 37 </ul>
33 </div> 38 </div>
34 </div> 39 </div>
35 40
36 41
37 <div class="input-group"> 42 <div class="input-group">
38 <span class="input-group-addon" id="basic-addon1">@</span> 43 <span class="input-group-addon" id="basic-addon1">@</span>
39 <input type="text" class="form-control username" placeholder="Username" 44 <input type="text" class="form-control username" placeholder="Username"
40 aria-describedby="basic- addon1"> 45 aria-describedby="basic- addon1">
41 </div> 46 </div>
42 47
43 <div class="commits_to_be_reviewed bootstrap-table"> 48 <div class="commits_to_be_reviewed bootstrap-table">
44 <div class="container tbr"> 49 <div class="container tbr">
45 </div> 50 </div>
46 </div> 51 </div>
47 52
48 53
49 </body> 54 </body>
50 </html> 55 </html>
OLDNEW
« no previous file with comments | « infra/tools/antibody/templates/stats.jinja ('k') | infra/tools/antibody/test/antibody_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698