Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/websdk/hatta/templates/edit_file.html
diff options
context:
space:
mode:
Diffstat (limited to 'websdk/hatta/templates/edit_file.html')
-rw-r--r--websdk/hatta/templates/edit_file.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/websdk/hatta/templates/edit_file.html b/websdk/hatta/templates/edit_file.html
new file mode 100644
index 0000000..6d67790
--- /dev/null
+++ b/websdk/hatta/templates/edit_file.html
@@ -0,0 +1,25 @@
+{% extends "page.html" %}
+
+{% block page_title %}<h1>{{ _("Editing \"%(title)s\"",
+ title=title) }}</h1>{% endblock %}
+{% block title %}{{ _("Editing \"%(title)s\"", title=title) }}{% endblock %}
+
+{% block content %}
+ <p>{{ _("This is a binary file, it can't be edited on a wiki. "
+ "Please upload a new version instead.") }}</p>
+ <form action="" method="POST" class="editor"
+ enctype="multipart/form-data"><div>
+ <div class="upload"><input type="file" name="data"></div>
+ <label class="comment">{{ _("Comment") }} <input
+ name="comment" value="{{ comment }}"></label>
+ <label class="comment">{{ _("Author") }} <input
+ name="author" value="{{ author }}"></label>
+ <div class="buttons">
+ <input type="submit" name="save" value="{{ _("Save") }}">
+ <input type="submit" name="cancel" value="{{ _("Cancel") }}">
+ </div>
+ <input type="hidden" name="parent" value="{{ parent }}">
+ </div></form>
+{% endblock %}
+
+{% block footer %}{% endblock %}