OLD | NEW |
| (Empty) |
1 <!DOCTYPE html> | |
2 <html> | |
3 <head> | |
4 <title>{{ title }}</title> | |
5 <link rel="stylesheet" href="/css/testpages.css"> | |
6 </head> | |
7 <body> | |
8 | |
9 <? include header ?> | |
10 | |
11 <section class="abp-container abp-breadcrumbs"> | |
12 <a href="/">Home</a> | |
13 > <a href="testsuite">Test suite</a> | |
14 {{ breadcrumb|safe }} | |
15 </section> | |
16 | |
17 <section class="abp-container"> | |
18 <h2>{{ testsuiteid }} - {{ testsuitename }}</h2> | |
19 | |
20 {{ body|safe }} | |
21 | |
22 <h3>Instructions</h3> | |
23 <table class="abp-testcase-information"> | |
24 <tr> | |
25 <th>Pass if</th> | |
26 <td>{{ testsuitepassif }}</td> | |
27 </tr> | |
28 <tr> | |
29 <th>Fail if</th> | |
30 <td>{{ testsuitefailif }}</td> | |
31 </tr> | |
32 </table> | |
33 | |
34 <h3>Information</h3> | |
35 <table class="abp-testcase-information"> | |
36 <tr> | |
37 <th>Purpose</th> | |
38 <td>{{ testsuitepurpose }}</td> | |
39 </tr> | |
40 <tr> | |
41 <th>Test method</th> | |
42 <td>{{ testsuitetestmethod }}</td> | |
43 </tr> | |
44 </table> | |
45 </section> | |
46 | |
47 <? include footer ?> | |
48 | |
49 </body> | |
50 </html> | |
OLD | NEW |