templates/webfront.html

Tue, 28 May 2019 19:10:52 +0300

author
Teemu Piippo <teemu@hecknology.net>
date
Tue, 28 May 2019 19:10:52 +0300
changeset 49
a1f5c12fa45c
parent 39
abc83875167e
child 61
15c95d3fcfd8
permissions
-rw-r--r--

fix LDRAW_ORG parsing

<!DOCTYPE html>
<html>
<head>
    <link rel="icon" href="static/favicon.ico" />
    <link rel="stylesheet" href="static/style.css" />
    <title>LDraw part verification tool</title>
</head>
<body>
<div class="top-form">
    <h1>Check your part here</h1>
    <form method="post" enctype="multipart/form-data">
        <input type="file" name="file"/>
        <input type="submit" />
    </form>
</div>
<div class="report-container">

{% if report %}
    <ul class="problems-list">
    {% for problem in report['problems'] %}
        <li class="problem-{{problem['type']}}">
            <img
                src="static/{{problem['type']}}.svg"
                width="32" height="32"
                class="problem-icon"
            />
            Line {{problem['line-number']}}: {{problem['message']}}
            <br />
            <span class="ldraw-code">{{problem['ldraw-code']}}</span>
        </li>
    {% endfor %}
    </ul>
{% endif %}
{% if report and not report['problems'] %}
No problems whatsoever.
{% endif %}

</div>
</body>
</html>

mercurial