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

Side by Side Diff: templates/buildbot.html

Issue 13892003: Added buildbot appengine frontend for chromium-build app (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/chromium-build
Patch Set: Review fixes Created 7 years, 8 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 {% extends "viewer_base.html" %}
2
3 {% block title %}
4 Buildbot viewer
5 {% endblock title %}
6
7 {% block head %}
8 <style>
9 .code {
10 font-family:monospace;
11 }
12 body {
13 white-space: nowrap;
14 }
15 .section-header {
16 background-color: #E8E8E8;
17 }
18 .center {
19 float: none;
20 margin-left: auto;
21 margin-right: auto;
22 width: 500px;
23 }
24 </style>
25 {% endblock head %}
26
27 {% block body %}
28 <div class="row">
29 </div>
30 <div class="row">
31 <div class="center">
32 <div class="hero-unit">
33 <h1>Welcome</h1>
34 <p>Paste in a stdio url from a build log</p>
35 </div>
36 <form method='GET' action='/buildbot/' class="form-inline">
37 <input type='text' class="input-block-level" name='url' placeholder='http: //build.chromium.org/p/....'>
38 </input>
39 <button type="submit" class="btn btn-primary">Go</button>
40 </form>
41 </div>
42 </div>
43 {% endblock body %}
OLDNEW
« no previous file with comments | « static/js/prettify.js ('k') | templates/logs.html » ('j') | templates/step.html » ('J')

Powered by Google App Engine
This is Rietveld 408576698