annotate media/js/tiny_mce/plugins/preview/preview.html @ 97:96eec1ed0fd3

Render the forum page navigation in the view with render_to_string() to avoid doing it twice in the template code. Also undo a mistake in the last commit. Need 2 different orderings for Post objects: by creation date in normal views, and by reverse creation date in the admin.
author Brian Neal <bgneal@gmail.com>
date Sun, 13 Sep 2009 19:58:31 +0000
parents a5b4c5ce0658
children
rev   line source
bgneal@45 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
bgneal@45 2 <html xmlns="http://www.w3.org/1999/xhtml">
bgneal@45 3 <head>
bgneal@45 4 <script type="text/javascript" src="../../tiny_mce_popup.js"></script>
bgneal@45 5 <script type="text/javascript" src="jscripts/embed.js"></script>
bgneal@45 6 <script type="text/javascript"><!--
bgneal@45 7 document.write('<base href="' + tinyMCEPopup.getWindowArg("base") + '">');
bgneal@45 8 // -->
bgneal@45 9 </script>
bgneal@45 10 <title>{#preview.preview_desc}</title>
bgneal@45 11 </head>
bgneal@45 12 <body id="content">
bgneal@45 13 <script type="text/javascript">
bgneal@45 14 document.write(tinyMCEPopup.editor.getContent());
bgneal@45 15 </script>
bgneal@45 16 </body>
bgneal@45 17 </html>