blob: 97f2bee7c214ea696535abd0fc559b4c03481b42 [file] [log] [blame]
Monty Taylor4a781a72017-07-25 07:28:04 -04001<!DOCTYPE html>
Tristan Cacqueraybe0441a2017-11-29 05:37:22 +00002<!--
3Copyright 2017 Red Hat
4
5Licensed under the Apache License, Version 2.0 (the "License"); you may
6not use this file except in compliance with the License. You may obtain
7a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11Unless required by applicable law or agreed to in writing, software
12distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14License for the specific language governing permissions and limitations
15under the License.
16-->
Tristan Cacqueraybe0441a2017-11-29 05:37:22 +000017<html>
18<head>
Monty Taylor4a781a72017-07-25 07:28:04 -040019 <meta http-equiv="Content-type" content="text/html; charset=utf-8"/>
20 <title id='pagetitle'><%= htmlWebpackPlugin.options.title %></title>
Tristan Cacqueraybe0441a2017-11-29 05:37:22 +000021</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>