djangoapp_sample.models.blog.
Blog
A very simple blog to contain articles.
title
Required unique title string.
get_absolute_url
Return absolute URL to the blog detail view.
djangoapp_sample.models.article.
Article
A simple article for a blog.
blog
Required related blog object.
Required title string.
content
Optionnal text content.
publish_start
Required publication date determine when article will be available.
Return absolute URL to the article detail view.