| 5 <link rel="stylesheet" href="static/style.css" /> |
5 <link rel="stylesheet" href="static/style.css" /> |
| 6 <title>LDraw part verification tool</title> |
6 <title>LDraw part verification tool</title> |
| 7 </head> |
7 </head> |
| 8 <body> |
8 <body> |
| 9 <div class="top-form"> |
9 <div class="top-form"> |
| 10 <h1>Check your part here</h1> |
10 <h1>{{appname}} {{version}} - Check your part here</h1> |
| 11 <form method="post" enctype="multipart/form-data"> |
11 <form method="post" enctype="multipart/form-data"> |
| 12 <input type="file" name="file"/> |
12 <input type="file" name="file"/> |
| 13 <input type="submit" /> |
13 <input type="submit" /> |
| 14 </form> |
14 </form> |
| 15 </div> |
15 </div> |
| 16 <div class="report-container"> |
16 <div class="report-container"> |
| |
17 |
| |
18 {% if is_debug %} |
| |
19 <p>Note: this is an unreleased version, everything may not work as intended.</p> |
| |
20 {% endif %} |
| 17 |
21 |
| 18 {% if report %} |
22 {% if report %} |
| 19 <h1>{{name}}</h1> |
23 <h1>{{name}}</h1> |
| 20 {% if report['problems'] %} |
24 {% if report['problems'] %} |
| 21 <ul class="problems-list"> |
25 <ul class="problems-list"> |