Upstream version 7.36.149.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     <div id="container">
20       {% for link in links %}
21         <div>
22           <a href="{{ link[1] }}">{{ link[0] }}</a>
23         </div>
24       {% endfor %}
25     </div>
26   </body>
27 </html>
28 {% endautoescape %}