annotate media/js/tiny_mce/plugins/preview/preview.html @ 145:71cb4208dc98

Tweak to #30, admin dashboard. Because of a bug in Django (9568), my dashboard appears on the login page. To get around this, pass in the user to the templatetag, so it can do a 'if user.is_staff' check. Also tweaked the HTML and CSS to show non-zero pending items in red. Shortened the pending item titles for readability.
author Brian Neal <bgneal@gmail.com>
date Wed, 09 Dec 2009 00:03:10 +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>