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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: templates/buildbot.html
diff --git a/templates/buildbot.html b/templates/buildbot.html
new file mode 100644
index 0000000000000000000000000000000000000000..76e7ea700518874576dee246e2f15644ae7b62f0
--- /dev/null
+++ b/templates/buildbot.html
@@ -0,0 +1,43 @@
+{% extends "viewer_base.html" %}
+
+{% block title %}
+Buildbot viewer
+{% endblock title %}
+
+{% block head %}
+<style>
+.code {
+ font-family:monospace;
+}
+body {
+ white-space: nowrap;
+}
+.section-header {
+ background-color: #E8E8E8;
+}
+.center {
+ float: none;
+ margin-left: auto;
+ margin-right: auto;
+ width: 500px;
+}
+</style>
+{% endblock head %}
+
+{% block body %}
+<div class="row">
+</div>
+<div class="row">
+ <div class="center">
+ <div class="hero-unit">
+ <h1>Welcome</h1>
+ <p>Paste in a stdio url from a build log</p>
+ </div>
+ <form method='GET' action='/buildbot/' class="form-inline">
+ <input type='text' class="input-block-level" name='url' placeholder='http://build.chromium.org/p/....'>
+ </input>
+ <button type="submit" class="btn btn-primary">Go</button>
+ </form>
+ </div>
+</div>
+{% endblock body %}
« 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