(pd)

Home of Django Blog

This project is a yet another simple blog. There are many like it, but this one is mine.

Example usage in your sites' urls.py file:

  (r'^', include('blog.urls')),

Version 1.1 Features

  • Comment moderation added, controlled by the following variables in a sites settings.py:
    • BLOG_COMMENTS_CLOSE_AFTER = <# days after which comments are closed>
    • BLOG_COMMENTS_MODERATE_AFTER = <# days after which comments are moderated>
    • BLOG_COMMENTS_EMAIL_NOTIFICATION = True/False
  • You must use the new admin include or the default templates will not work.
  • Entry and author pages now show edit links that allow direct editing of the element via the admin interface.
  • Draft entries show the word 'Draft' in their headline during the preview.
  • BLOG_PAGINATE_ENTRY_LIST controls the number of pages show in the entry_list page, default is 10.

Download Release

  • 1.1 Jan 24 2010