src/cm/templates/site/text_create_content.html
changeset 0 40c8f766c9b8
child 237 48c4d74c5cd9
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/cm/templates/site/text_create_content.html	Mon Nov 23 15:14:29 2009 +0100
@@ -0,0 +1,66 @@
+{% extends "site/layout/base_workspace.html" %}
+{% load i18n %}
+
+{% block title %}{% blocktrans %}Write a text{% endblocktrans %}{% endblock %}
+
+{% block main %}
+    {% include "site/macros/text_editor.html" %}
+    
+<script type="text/javascript">
+<!--
+tb_conf['current_tab'] = 'text';
+-->
+</script>
+
+<script type="text/javascript">
+<!--
+$(function() {
+    $(".hidden-text-actions").css('visibility','hidden');   
+}) ;
+-->
+</script>
+
+<div id="text" class="tab-meta">   
+
+<ul class="sub_list">
+    <li><a href="{% url text %}">{% blocktrans %}Text list{% endblocktrans %}</a></li>
+    <li> / </li>
+    <li class="active_sub">{% blocktrans %}Write a text{% endblocktrans %}</li>
+    <li> / </li>
+    <li><a href="{% url text-create-upload %}">{% blocktrans %}Upload a text{% endblocktrans %}</a></li>
+</ul>
+
+
+{% autoescape off %} {{ document }} {% endautoescape %}
+
+<form id="text_create_content" enctype="multipart/form-data" class="wizard-form" action="." method="post">
+<table class="wide_form">
+    <tbody>
+    {% include "site/macros/form_fields.html" %}    
+    <tr>
+        <td style="vertical-align: top; width: 20%; text-align:right;">
+        </td>
+        <td>
+            <label></label>
+            <input id="save_button" name="save" type="submit" value="{% blocktrans %}Save{% endblocktrans %}"/>
+            &nbsp;
+            <input id="cancel_button" type="button" value="{% blocktrans %}Cancel{% endblocktrans %}"/>
+            <script type="text/javascript">
+            <!--
+            $(document).ready(function(){
+                $("#cancel_button").click(function () { 
+                    needToConfirm = false ;
+                    window.location = "{% url index %}"; 
+                  });                
+                $("#save_button").click(function () { 
+                    needToConfirm = false ;
+                  });                
+            }) ;
+            -->
+            </script>                 
+        </td>
+    </tr>
+    </tbody>
+</table>
+</form>
+{% endblock %}