1 {% extends
"master.html" %}
4 <script type=
"text/javascript" src=
"/static/tinymce/tiny_mce.js" />
9 plugins
: "safari,spellchecker,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,pagebreak,imagemanager,filemanager",
10 theme_advanced_buttons1_add_before
: "save,newdocument,separator",
11 theme_advanced_buttons1_add
: "fontselect,fontsizeselect",
12 theme_advanced_buttons2_add
: "separator,insertdate,inserttime,preview,separator,forecolor,backcolor",
13 theme_advanced_buttons2_add_before
: "cut,copy,paste,pastetext,pasteword,separator,search,replace,separator",
14 theme_advanced_buttons3_add_before
: "tablecontrols,separator",
15 theme_advanced_buttons3_add
: "emotions,iespell,media,advhr,separator,print,separator,ltr,rtl,separator,fullscreen",
16 theme_advanced_buttons4
: "insertlayer,moveforward,movebackward,absolute,|,styleprops,|,spellchecker,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,blockquote,pagebreak,|,insertfile,insertimage",
17 theme_advanced_toolbar_location
: "top",
18 theme_advanced_toolbar_align
: "left",
19 theme_advanced_statusbar_location
: "bottom",
20 content_css
: "/example_data/example_full.css",
21 plugin_insertdate_dateFormat
: "%Y-%m-%d",
22 plugin_insertdate_timeFormat
: "%H:%M:%S",
23 external_link_list_url
: "example_data/example_link_list.js",
24 external_image_list_url
: "example_data/example_image_list.js",
25 flash_external_list_url
: "example_data/example_flash_list.js",
26 template_external_list_url
: "example_data/example_template_list.js",
27 theme_advanced_resize_horizontal
: false,
28 theme_advanced_resizing
: true,
29 apply_source_formatting
: true,
30 spellchecker_languages
: "+English=en,Danish=da,Dutch=nl,Finnish=fi,French=fr,German=de,Italian=it,Polish=pl,Portuguese=pt,Spanish=es,Swedish=sv"
36 <h1>Editing: {{ pagename }}
</h1><hr/>
38 <form action=
"" method=
"POST">
39 <input type=
"hidden" name=
"name" value=
"${pagename}" />
42 <tr><th>Title:
</th><td>
43 <input type=
"text" name=
"title" size=
"60" value=
"{{ title }}" />
46 <textarea rows=
"32" cols=
"64" name=
"contents">
50 <tr><td align=
"right" colspan=
"2">
51 <input type=
"submit" value=
"Submit" />
57 {% endblock content %}