Monty Taylor | 4a781a7 | 2017-07-25 07:28:04 -0400 | [diff] [blame^] | 1 | <!DOCTYPE html> |
Tristan Cacqueray | be0441a | 2017-11-29 05:37:22 +0000 | [diff] [blame] | 2 | <!-- |
| 3 | Copyright 2017 Red Hat |
| 4 | |
| 5 | Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 6 | not use this file except in compliance with the License. You may obtain |
| 7 | a copy of the License at |
| 8 | |
| 9 | http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | |
| 11 | Unless required by applicable law or agreed to in writing, software |
| 12 | distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 13 | WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 14 | License for the specific language governing permissions and limitations |
| 15 | under the License. |
| 16 | --> |
Tristan Cacqueray | be0441a | 2017-11-29 05:37:22 +0000 | [diff] [blame] | 17 | <html> |
| 18 | <head> |
Monty Taylor | 4a781a7 | 2017-07-25 07:28:04 -0400 | [diff] [blame^] | 19 | <meta http-equiv="Content-type" content="text/html; charset=utf-8"/> |
| 20 | <title id='pagetitle'><%= htmlWebpackPlugin.options.title %></title> |
Tristan Cacqueray | be0441a | 2017-11-29 05:37:22 +0000 | [diff] [blame] | 21 | </head> |
| 22 | <body ng-app="zuulJobs" ng-controller="mainController"><div class="container-fluid"> |
| 23 | <nav class="navbar navbar-default"> |
| 24 | <div class="container-fluid"> |
| 25 | <div class="navbar-header"> |
| 26 | <a class="navbar-brand" href="../" target="_self">Zuul Dashboard</a> |
| 27 | </div> |
| 28 | <ul class="nav navbar-nav"> |
| 29 | <li><a href="status.html" target="_self">Status</a></li> |
| 30 | <li class="active"><a href="jobs.html" target="_self">Jobs</a></li> |
| 31 | <li><a href="builds.html" target="_self">Builds</a></li> |
| 32 | </ul> |
| 33 | </div> |
| 34 | </nav> |
| 35 | <table class="table table-hover table-condensed"> |
| 36 | <thead> |
| 37 | <tr> |
| 38 | <th>Name</th> |
| 39 | <th>Description</th> |
| 40 | <th>Last builds</th> |
| 41 | </tr> |
| 42 | </thead> |
| 43 | <tbody> |
| 44 | <tr ng-repeat="job in jobs"> |
| 45 | <td>{{ job.name }}</td> |
| 46 | <td>{{ job.description }}</td> |
| 47 | <td><a href="builds.html?job_name={{ job.name }}">builds</a></td> |
| 48 | </tr> |
| 49 | </tbody> |
| 50 | </table> |
| 51 | </div></body></html> |