| Index: dashboard/dashboard/elements/speed-releasing-page.html
|
| diff --git a/dashboard/dashboard/elements/speed-releasing-page.html b/dashboard/dashboard/elements/speed-releasing-page.html
|
| index ed6200e25085b003bb349da35d44cd3daf2f313f..2078aca3fa8b6033b671e56ca52580af21750722 100644
|
| --- a/dashboard/dashboard/elements/speed-releasing-page.html
|
| +++ b/dashboard/dashboard/elements/speed-releasing-page.html
|
| @@ -50,7 +50,7 @@ found in the LICENSE file.
|
| </template>
|
| <template is="dom-if" if="{{!error}}">
|
| <div id="content">
|
| - <p>Coming soon.</p>
|
| + <p>{{tableBots}}<br>{{tableTests}}<br>{{tableLayout}}</p>
|
| </div>
|
| </template>
|
| </template>
|
| @@ -75,14 +75,27 @@ found in the LICENSE file.
|
| type: String,
|
| value: ''
|
| },
|
| + tableBots: {
|
| + type: String,
|
| + },
|
| + tableTests: {
|
| + type: String,
|
| + },
|
| + tableLayout: {
|
| + type: String,
|
| + },
|
| },
|
|
|
| ready: function() {
|
| var params = {};
|
| - simple_xhr.send('/speed_releasing', params,
|
| + var path = window.location.pathname.split('/')[2];
|
| + simple_xhr.send('/speed_releasing/' + path, params,
|
| function(response) {
|
| this.xsrfToken = response['xsrf_token'];
|
| this.loading = false;
|
| + this.tableBots = response['table_bots'];
|
| + this.tableTests = response['table_tests'];
|
| + this.tableLayout = response['table_layout'];
|
| }.bind(this),
|
| function(msg) {
|
| this.error = msg;
|
|
|