| 33 {% endfor %} |
33 {% endfor %} |
| 34 </ul> |
34 </ul> |
| 35 {% else %} |
35 {% else %} |
| 36 No problems whatsoever. |
36 No problems whatsoever. |
| 37 {% endif %} |
37 {% endif %} |
| |
38 <hr /> |
| 38 {% endif %} |
39 {% endif %} |
| |
40 <h1>List of reported issue types</h1> |
| |
41 <table> |
| |
42 <thead> |
| |
43 <tr> |
| |
44 <th>Name of issue</th> |
| |
45 <th>Severity</th> |
| |
46 <th>Example message</th> |
| |
47 </tr> |
| |
48 </thead> |
| |
49 <tbody> |
| |
50 |
| |
51 {% for problem_type in problem_types %} |
| |
52 <tr> |
| |
53 <td>{{ problem_type.name }}</td> |
| |
54 <td>{{ problem_type.severity }}</td> |
| |
55 <td>{{ problem_type.placeholder_message() }}</td> |
| |
56 </tr> |
| |
57 {% endfor %} |
| |
58 </tbody> |
| |
59 </table> |
| 39 </div> |
60 </div> |
| 40 </body> |
61 </body> |
| 41 </html> |
62 </html> |