diff options
author | substantialnoninfringinguser <substantialnoninfringinguser@gmail.com> | 2009-05-13 05:48:47 +0100 |
---|---|---|
committer | substantialnoninfringinguser <substantialnoninfringinguser@gmail.com> | 2009-05-13 05:48:47 +0100 |
commit | cb52c47aa9632a6c0affde9b0ceeab06877c760b (patch) | |
tree | 4a242f8a7929db5c1a49958f2aec3a826af893b3 /templates/fileupload.html | |
parent | ed345f25760d8927f834a69202c2b9b2cef71ee0 (diff) | |
download | troggle-cb52c47aa9632a6c0affde9b0ceeab06877c760b.tar.gz troggle-cb52c47aa9632a6c0affde9b0ceeab06877c760b.tar.bz2 troggle-cb52c47aa9632a6c0affde9b0ceeab06877c760b.zip |
[svn] yorkshire work with tunnel integration
Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8232 by julian @ 1/29/2009 11:40 PM
Diffstat (limited to 'templates/fileupload.html')
-rw-r--r-- | templates/fileupload.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/templates/fileupload.html b/templates/fileupload.html new file mode 100644 index 0000000..d1db6ca --- /dev/null +++ b/templates/fileupload.html @@ -0,0 +1,18 @@ +<h2>Fileupload</h2>
+
+<ul>
+{% for fileuploaded in filesuploaded %}
+<li>UPLOADEDFILE: {{fileuploaded}}
+</li>
+{% endfor %}
+</ul>
+<p>MESSAGE: {{message}}
+</p>
+
+{% if not filesuploaded %}
+<form action="" method="POST">
+ <p>file to upload</p>
+ <p><input type="file" name="file1"/></p>
+ <p><input type="submit" name="submit" value="Submit" /></p>
+</form>
+{% endif %}
|