~widelands-dev/widelands-website/trunk

« back to all changes in this revision

Viewing changes to templates/wlimages/upload.html

  • Committer: Holger Rapp
  • Date: 2009-03-01 20:47:48 UTC
  • Revision ID: sirver@kallisto.local-20090301204748-h3ouqkp8zhv10ydq
First (working) commit of wlimages app, the app that will handle image uploading and managing. Uploading works now; images can only be uploaded once (with the same filename). Much stil missing. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{% extends "base.html" %}
 
2
{% comment %}
 
3
   vim:ft=htmldjango
 
4
{% endcomment %}
 
5
 
 
6
{% block content %}
 
7
<form  enctype="multipart/form-data" action="/images/upload/" method="POST">
 
8
{{ upload_form.as_p }}
 
9
<input type="submit" value="Submit" />
 
10
</form>
 
11
{% endblock %}