File: index.html

package info (click to toggle)
flask-wtf 1.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 428 kB
  • sloc: python: 1,313; makefile: 22; sh: 10
file content (21 lines) | stat: -rw-r--r-- 520 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>

<html>
    <body>
        {% for upload in filedata %}
        <h3>{{ upload.data.filename }}</h3>
        {% endfor %}
        <form method="POST" enctype="multipart/form-data">
            {{ form.errors }}
            {{ form.hidden_tag() }}
            {% for upload in form.uploads.entries %}
            <p>
            {{ upload }}
            </p>
            {% endfor %}
            <p>
                <input type="submit" value="Submit">
            </p>
        </form>
    </body>
</html>