Home | History | Annotate | Download | only in static
      1 <!DOCTYPE html>
      2 {% autoescape true %}
      3 <html>
      4   <head>
      5     <!-- [START css] -->
      6     <link type="text/css" rel="stylesheet" href="/bootstrap/css/bootstrap.css">
      7     <link type="text/css" rel="stylesheet" href="/bootstrap/css/bootstrap-responsive.css">
      8     <!-- [END css] -->
      9     <style type="text/css">
     10       body {
     11         padding-top: 40px;
     12         padding-bottom: 40px;
     13         background-color: #f5f5f5;
     14       }
     15       blockquote {
     16         margin-bottom: 10px;
     17         border-left-color: #bbb;
     18       }
     19       form {
     20         margin-top: 10px;
     21       }
     22       .form-signin input[type="text"] {
     23         font-size: 16px;
     24         height: auto;
     25         margin-bottom: 15px;
     26         padding: 7px 9px;
     27       }
     28       .row {
     29         margin-left: 0px;
     30         margin-top: 10px;
     31         overflow: scroll;
     32       }
     33     </style>
     34   </head>
     35   <body>
     36     <div class="navbar navbar-inverse navbar-fixed-top">
     37       <div class="navbar-inner">
     38         <div class="container">
     39           <button type="button" class="btn btn-navbar" data-toggle="collapse"
     40                data-target=".nav-collapse">
     41             <span class="icon-bar"></span>
     42             <span class="icon-bar"></span>
     43             <span class="icon-bar"></span>
     44           </button>
     45           <a class="brand" href="#">VTS Test Scheduler</a>
     46            <a class="brand" href="/result">Result</a>
     47            <a class="brand" href="/build">Build</a>
     48            <a class="brand" href="/schedule">Schedule</a>
     49            <a class="brand" href="/device">Device &amp; Lab</a>
     50            <a class="brand" href="/job">Job Queue</a>
     51           <div class="nav-collapse collapse pull-right">
     52             <a href="{{ url|safe }}" class="btn">{{ url_linktext }}</a>
     53           </div>
     54         </div>
     55       </div>
     56     </div>
     57     <div class="container">
     58       <h1>Schedule List</h1>
     59       <p>Shortcuts: <a href=#>8.0 (oc)</a> <a href=#>8.1 (oc-mr1)</a> <a href=#>9.0 (pi)</a></p>
     60       <table>
     61       <tr>
     62         <td>
     63           <select>
     64             <option value="all">all</option>
     65             <option value="git_master">git_master</option>
     66             <option value="git_pi-release">git_pi-release</option>
     67           </select>
     68       </tr>
     69       </table>
     70       <table border=1>
     71       <tr>
     72         <td>#
     73         <td>manifest_branch
     74         <td>build_target
     75         <td>test_name
     76         <td>period
     77         <td>device
     78         <td>shards
     79         <td>retry_count
     80         <td>param
     81         <td>priority
     82         <td>timestamp
     83       </tr>
     84       {% set index = 1 %}
     85       {% for schedule in schedules %}
     86       <tr>
     87         <td>
     88           {{ index }}
     89           {% set index = index + 1 %}
     90         <td>
     91           {{ schedule.manifest_branch }}
     92         <td>
     93           {{ schedule.build_target }}
     94         <td>
     95           {{ schedule.test_name }}
     96         <td>
     97           {{ schedule.period }}
     98         <td>
     99           {{ schedule.device }}
    100         <td>
    101           {{ schedule.shards }}
    102         <td>
    103           {{ schedule.retry_count }}
    104         <td>
    105           {{ schedule.param }}
    106         <td>
    107           {{ schedule.priority }}
    108         <td>
    109           {{ schedule.timestamp }}
    110       </tr>
    111       {% endfor %}
    112       </table>
    113       <hr>
    114     </div>
    115   </body>
    116 </html>
    117 {% endautoescape %}
    118