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

Unified Diff: dashboard/dashboard/elements/speed-releasing-landing-page.html

Issue 2619883003: More structure for speed releasing. (Closed)
Patch Set: response to comments Created 3 years, 11 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
« no previous file with comments | « dashboard/dashboard/dispatcher.py ('k') | dashboard/dashboard/elements/speed-releasing-page.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dashboard/dashboard/elements/speed-releasing-landing-page.html
diff --git a/dashboard/dashboard/elements/speed-releasing-landing-page.html b/dashboard/dashboard/elements/speed-releasing-landing-page.html
new file mode 100644
index 0000000000000000000000000000000000000000..16b681e4aedd8ffb3734fdc2b8895e732b4938aa
--- /dev/null
+++ b/dashboard/dashboard/elements/speed-releasing-landing-page.html
@@ -0,0 +1,54 @@
+<!DOCTYPE html>
+<!--
+Copyright 2017 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+
+<link type="text/css" rel="stylesheet" href="/dashboard/static/base.css">
+
+<link rel="import" href="/components/paper-button/paper-button.html">
+<link rel="import" href="/components/paper-dropdown-menu/paper-dropdown-menu.html">
+<link rel="import" href="/components/paper-item/paper-item.html">
+<link rel="import" href="/components/paper-listbox/paper-listbox.html">
+<link rel="import" href="/components/polymer/polymer.html">
+
+<dom-module id="speed-releasing-landing-page">
+ <template>
+ <style>
+ .error {
+ color: #dd4b39;
+ font-weight: bold;
+ }
+
+ .center {
+ margin: auto;
+ padding: 10px;
+ }
+
+ #loading-spinner {
+ width: 100%;
+ display: flex;
+ justify-content: center;
+ }
+ </style>
+
+ Please specify a table to view. Here are some options: <br><br>
+ <template is="dom-repeat" items="{{list}}">
+ <a href="/speed_releasing/{{item}}">{{item}}</a> <br><br>
+ </template>
+ </template>
+ <script>
+ 'use strict';
+ Polymer({
+
+ is: 'speed-releasing-landing-page',
+ properties: {
+ list: {
+ type: Object,
+ notify: true,
+ }
+ },
+ });
+ </script>
+</dom-module>
« no previous file with comments | « dashboard/dashboard/dispatcher.py ('k') | dashboard/dashboard/elements/speed-releasing-page.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698