 Chromium Code Reviews
 Chromium Code Reviews Issue 13892003:
  Added buildbot appengine frontend for chromium-build app  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/tools/chromium-build
    
  
    Issue 13892003:
  Added buildbot appengine frontend for chromium-build app  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/tools/chromium-build| OLD | NEW | 
|---|---|
| (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 %} | |
| OLD | NEW |