Mercurial > public > sg101
annotate gpp/templates/comments/markdown_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 | d203a4a986d2 |
children |
rev | line source |
---|---|
gremmie@1 | 1 <?xml version="1.0" encoding="UTF-8"?> |
gremmie@1 | 2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" |
gremmie@1 | 3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
gremmie@1 | 4 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> |
gremmie@1 | 5 <head> |
gremmie@1 | 6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
gremmie@1 | 7 <title>Markdown Preview</title> |
gremmie@1 | 8 <link rel="stylesheet" type="text/css" href="~/templates/preview.css" /> |
gremmie@1 | 9 </head> |
bgneal@136 | 10 {{ data|safe }} |
gremmie@1 | 11 </body> |
gremmie@1 | 12 </html> |