Fix bug #11: do not index edit, delete and tool pages
[phorkie.git] / data / templates / index.htm
index c239d56b046f598e084f74c350db60625117577d..5752c1e5a9fe3767a589ca379d58ca0493989fda 100644 (file)
@@ -2,29 +2,15 @@
 {% block title %}New paste{% endblock %}
 
 {% block content %}
-<form method="post" action="/">
+<form method="post" action="/" enctype="multipart/form-data">
  <div class="control-group well pastedata">
    <label for="description">Description</label>
    <input type="text" name="description" id="description" value="{{description}}"/>
  </div>
 
- <div class="well">
-  <div class="row-fluid">
-   <div class="span6">
-    <label for="filename_1">Filename</label>
-    <input type="text" name="file[1][name]" id="filename_1" value="{{ file[1]['name'] }}"/>
-   </div>
-   <div class="span6" style="text-align: right">
-    <label for="type_1">Type</label>
-    <select name="file[1][type]" id="type_1">
-     <option value="css">CSS</option>
-     <option value="php">PHP</option>
-     <option value="xml">XML</option>
-    </select>
-   </div>
-  </div>
-  <textarea name="file[1][content]" id="content_1" cols="80" rows="10" class="content">{{ file[1]['content'] }}</textarea>
- </div>
+ {% include 'edit-file.htm' with {'file': file[1], 'fileid': 0, 'newfile': true} %}
+
+ {% include 'edit-add.htm' %}
 
  <div class="well" style="text-align: right">
   <button class="btn btn-primary" type="submit">
  </div>
 
 </form>
+<script type="application/javascript">
+$(document).ready(function() {
+    initEdit();
+});
+</script>
 {% endblock %}
+
+
+{% block sidebar %}
+ {% if recents.results %}
+ <h3>Recently created</h3>
+ <ul>
+ {% for repo in recents.repos %}
+   {% include 'repo-sidebar-list.htm' %}
+ {% endfor %}
+ </ul>
+ {% endif %}
+{% endblock %}
\ No newline at end of file