Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / chrome / test / ispy / server / views / list_view.html
1 <!DOCTYPE html>
2 {% autoescape on %}
3 <html>
4   <head>
5     <title>I-Spy Test Runs</title>
6     <style>
7       #container {
8         display: table;
9         background-color:#DDD;
10         border: 1px solid #AAA;
11         width: 400px;
12         margin: 5px;
13         padding: 5px;
14       }
15     </style>
16   </head>
17   <body>
18     <h3>Test Runs</h3>
19     <form method="get">
20       <label for "prefix">Search Failures by Prefix:</label>
21       <input type="text" name="marker" id="prefix">
22       <input type="submit" value="submit">
23     </form>
24     <a href="{{ next_url }}">Next</a>
25     <div id="container">
26       {% for link in links %}
27         <div>
28           <a href="{{ link[1] }}">{{ link[0] }}</a>
29         </div>
30       {% endfor %}
31     </div>
32   </body>
33 </html>
34 {% endautoescape %}