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

Side by Side Diff: appengine/chromium_cq_status/html/recent.html

Issue 2111713004: Teach CQ status app to check login status of users. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Review and tests. Created 4 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <title>Chromium CQ Status recent logs</title>
3 <script src="../js/recent.js"></script>
4 <style>
5 :root {
6 font-family: monospace;
7 white-space: pre;
8 }
9 h1 {
10 font-family: sans-serif;
11 }
12 a {
13 text-decoration: none;
14 }
15 h1 > a {
16 color: black;
17 }
18 hint {
19 color: gray;
20 font-size: 80%;
21 }
22 table {
23 border-spacing: 0;
24 }
25 tr:hover {
26 background-color: aliceblue;
27 }
28 tr.selected {
29 background-color: lightskyblue;
30 }
31 th {
32 border-bottom: solid 1px black;
33 }
34 td {
35 max-width: 400px;
36 overflow-wrap: break-word;
37 white-space: pre-wrap;
38 border-top: solid 1px grey;
39 }
40 td ~ td, th ~ th {
41 border-left: solid 1px black;
42 padding: 1px 4px;
43 }
44 .hide {
45 visibility: hidden;
46 }
47 dialog {
48 position: fixed;
49 top: 0;
50 bottom: 0;
51 max-width: 90vw;
52 max-height: 90vh;
53 }
54 textarea {
55 width: 600px;
56 height: 400px;
57 }
58 flex {
59 display: flex;
60 justify-content: center;
61 flex-direction: column;
62 align-items: center;
63 }
64 </style>
65
66 <h1><a href='/'>Chromium CQ Status</a> recent logs</h1>
67 Filters: <span id="filterList"></span>
68 <br>
69 <table>
70 <tbody id="table">
71 <tr>
72 <th>Timestamp</th>
73 <th>Project</th>
74 <th>Owner</th>
75 <th>Codereview</th>
76 <th>Issue</th>
77 <th>Patchset</th>
78 <th>Action</th>
79 <th>Verifier</th>
80 <th>Message</th>
81 <th></th>
82 </tr>
83 </tbody>
84 </table>
85 <flex>
86 <div id="loading">Loading...</div>
87 <button id="loadMore" disabled>Load More</button>
88 </flex>
89 <br>
90 <hint>
91 Variables available to Javascript console for programmatic analysis:
92 - records
93 - selectedRecords
94 </hint>
OLDNEW
« no previous file with comments | « appengine/chromium_cq_status/handlers/test/stats_query_test.py ('k') | appengine/chromium_cq_status/js/patch_status.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698