• Skip to main content
  • Select language
  • Skip to search
MDN Web Docs
  • Technologies
    • HTML
    • CSS
    • JavaScript
    • Graphics
    • HTTP
    • APIs / DOM
    • WebExtensions
    • MathML
  • References & Guides
    • Learn web development
    • Tutorials
    • References
    • Developer Guides
    • Accessibility
    • Game development
    • ...more docs
Learn web development
  1. MDN
  2. Learn web development
  3. Server-side website programming
  4. Django Web Framework (Python)
  5. Assessment: DIY Django mini blog

Assessment: DIY Django mini blog

In This Article
  1. Project brief
  2. Screenshots
    1. List of all blog posts
    2. List of all bloggers
    3. Blog detail page
    4. Add comment form
    5. Author bio
  3. Steps to complete
  4. Hints and tips
  5. Assessment
Previous Overview: Django

 

In this assessment you'll use the Django knowledge you've picked up in the Django Web Framework (Python) module to create a very basic blog.

Prerequisites: Before attempting this assessment you should have already worked through all the articles in this module.
Objective: To test comprehension of Django fundamentals, including URL configurations, models, views, forms, and templates.

Project brief

The pages that need to be displayed, their URLs, and other requirements, are listed below:

Page URL Requirements
Home page / and /blog/ An index page describing the site.
List of all blog posts /blog/blogs/

List of all blog posts:

  • Accessible to all users from a sidebar link.
  • List sorted by post date (newest to oldest).
  • List paginated in groups of 5 articles.
  • List items display the blog title, post date, and author.
  • Blog post names are linked to blog detail pages.
  • Blogger (author names) are linked to blog author detail pages.
Blog author (blogger) detail page /blog/blogger/<author-id>

Information for a specified author (by id) and list of their blog posts:

  • Accessible to all users from author links in blog posts etc.
  • Contains some biographical information about the blogger/author.
  • List sorted by post date (newest to oldest).
  • Not paginated.
  • List items display just the blog post name and post date.
  • Blog post names are linked to blog detail pages.
Blog post detail page /blog/<blog-id>

Blog post details.

  • Accessible to all users from blog post lists.
  • Page contains the blog post: name, author, post date, and content.
  • Comments for the blog post should be displayed at bottom.
  • Comments should be sorted in order: oldest to most recent.
  • Contains link to add comments at end for logged in users (see Comment form page)
  • Blog posts and comments need only display plain text. There is no need to support any sort of HTML markup (e.g. links, images, bold/italic, etc).
List of all bloggers /blog/bloggers/

List of bloggers on system:

  • Accessible to all users from site sidebar
  • Blogger names are linked to Blog author detail pages.
Comment form page /blog/<blog-id>/create

Create comment for blog post:

  • Accessible to logged-in users (only) from link at bottom of blog post detail pages.
  • Displays form with description for entering comments (post date and blog is not editable).
  • After a comment has been posted, the page will redirect back to the associated blog post page.
  • Users cannot edit or delete their posts.
  • Logged out users will be directed to the login page to log in, before they can add comments. After logging in, they will be redirected back to the blog page they wanted to comment on.
  • Comment pages should include the name/link to the blogpost being commented on.
User authentication pages /accounts/<standard urls>

Standard Django authentication pages for logging in, out and setting the password:

  • Login/out should be accessible via sidebar links.
Admin site /admin/<standard urls>

Admin site should be enabled to allow create/edit/delete of blog posts, blog authors and blog comments (this is the mechanism for bloggers to create new blog posts):

  • Admin site blog posts records should display the list of associated comments inline (below each blog post).
  • Comment names in the Admin site are created by truncating the comment description to 75 characters.
  • Other types of records can use basic registration.

In addition you should write some basic tests to verify:

  • All model fields have the correct label and length.
  • All models have the expected object name (e.g. __str__() returns the expected value).
  • Models have the expected URL for individual Blog and Comment records (e.g. get_absolute_url() returns the expected URL).
  • The BlogListView (all-blog page) is accessible at the expected location (e.g. /blog/blogs)
  • The BlogListView (all-blog page) is accessible at the expected named url (e.g. 'blogs')
  • The BlogListView (all-blog page) uses the expected template (e.g. the default)
  • The BlogListView paginates records by 5 (at least on the first page)

Note: There are of course many other tests you can run. Use your discretion, but we'll expect you to do at least the tests above.

The following section shows screenshots of a site that implements the requirements above.

Screenshots

The following screenshot provide an example of what the finished program should output.

List of all blog posts

This displays the list of all blog posts (accessible from the "All blogs" link in the sidebar). Things to note:

  • The sidebar also lists the logged in user.
  • Individual blog posts and bloggers are accessible as links in the page.
  • Pagination is enabled (in groups of 5)
  • Ordering is newest to oldest.

List of all blogs

List of all bloggers

This provides links to all bloggers, as linked from the "All bloggers" link in the sidebar. In this case we can see from the sidebar that no user is logged in.

List of all bloggers

Blog detail page

This shows the detail page for a particular blog.

Blog detail with add comment link

Note that the comments have a date and time, and are ordered from oldest to newest (opposite of blog ordering). At the end we have a link for accessing the form to add a new comment. If a user is not logged in we'd instead see a suggestion to log in.

Comment link when not logged in

Add comment form

This is the form to add comments. Note that we're logged in. When this succeeds we should be taken back to the associated blog post page.

Add comment form

Author bio

This displays bio information for a blogger along with their blog posts list.

Blogger detail page

Steps to complete

The following sections describe what you need to do.

  1. Create a skeleton project and web application for the site (as described in Django Tutorial Part 2: Creating a skeleton website). You might use 'diyblog' for the project name and 'blog' for the application name.
  2. Create models for the Blog posts, Comments, and any other objects needed. When thinking about your design, remember:
    • Each comment will have only one blog, but a blog may have many comments.
    • Blog posts and comments must be sorted by post date.
    • Not every user will necessarily be a blog author though any user may be a commenter.
    • Blog authors must also include bio information.
  3. Run migrations for your new models and create a superuser.
  4. Use the admin site to create some example blog posts and blog comments.
  5. Create views, templates, and URL configurations for blog post and blogger list pages.
  6. Create views, templates, and URL configurations for blog post and blogger detail pages.
  7. Create a page with a form for adding new comments (remember to make this only available to logged in users!)

Hints and tips

This project is very similar to the LocalLibrary tutorial. You will be able to set up the skeleton, user login/logout behaviour, support for static files, views, URLs, forms, base templates and admin site configuration using almost all the same approaches.

Some general hints:

  1. The index page can be implemented as a basic function view and template (just like for the locallibrary).
  2. The list view for blog posts and bloggers, and the detail view for blog posts can be created using the generic list and detail views.
  3. The list of blog posts for a particular author can be created by using a generic list Blog list view and filtering for blog object that match the specified author.
    • You will have to implement get_queryset(self) to do the filtering (much like in our library class LoanedBooksAllListView) and get the author information from the URL.
    • You will also need to pass the name of the author to the page in the context. To do this in a class-based view you need to implement get_context_data() (discussed below).
  4. The add comment form can be created using a function-based view (and associated model and form) or using a generic CreateView. If you use a CreateView (recommended) then:
    • You will also need to pass the name of the blog post to the comment page in the context (implement get_context_data() as discussed below).
    • The form should only display the comment "description" for user entry (date and associated blog post should not be editable). Since they won't be in the form itself, your code will need to set the comment's author in the form_valid() function so it can be saved into the model (as described here — Django docs). In that same function we set the associated blog. A possible implementation is shown below (pk is a blog id passed in from the URL/URL configuration).
          def form_valid(self, form):
              """
              Add author and associated blog to form data before setting it as valid (so it is saved to model)
              """
              #Add logged-in user as author of comment
              form.instance.author = self.request.user
              #Associate comment with blog based on passed id
              form.instance.blog=get_object_or_404(Blog, pk = self.kwargs['pk'])
              # Call super-class form validation behaviour
              return super(BlogCommentCreate, self).form_valid(form)
      
    • You will need to provide a success URL to redirect to after the form validates; this should be the original blog. To do this you will need to override get_success_url() and "reverse" the URL for the original blog. You can get the required blog ID using the self.kwargs attribute, as shown in the form_valid() method above.

We briefly talked about passing a context to the template in a class-based view in the Django Tutorial Part 6: Generic list and detail views topic. To do this you need to override get_queryset() (first getting the existing context, updating it with whatever additional variables you want to pass to the template, and then returning the updated context. For example, the code fragment below shows how you can add a blogger object to the context based on their BlogAuthor id.

class SomeView(generic.ListView):
    ...  
    def get_context_data(self, **kwargs):
        # Call the base implementation first to get a context
        context = super(SomeView, self).get_context_data(**kwargs)
        # Get the blogger object from the "pk" URL parameter and add it to the context
        context['blogger'] = get_object_or_404(BlogAuthor, pk = self.kwargs['pk'])
        return context

Assessment

The assessment for this task is available on Github here. This assessment is primarily based on how well your application meets the requirements we listed above, though there are some parts of the assessment that check your code uses appropriate models, and that you have written at least some test code. When you're done, you can check out our the finished example which reflects a "full marks" project.

Once you've completed this module you've also finished all the MDN content for learning basic Django server-side website programming! We hope you enjoyed this module and feel you have a good grasp of the basics!

Previous Overview: Django

 

Document Tags and Contributors

Tags: 
  • Assessment
  • Beginner
  • blog
  • CodingScripting
  • django
  • Learn
  • server-side
  • Server-side programming
 Contributors to this page: chrisdavidmills, hamishwillee
 Last updated by: chrisdavidmills, Nov 9, 2016, 3:42:23 AM
See also
  1. Complete beginners start here!
  2. Getting started with the Web
    1. Getting started with the Web overview
    2. Installing basic software
    3. What will your website look like?
    4. Dealing with files
    5. HTML basics
    6. CSS basics
    7. JavaScript basics
    8. Publishing your website
    9. How the Web works
  3. HTML — Structuring the Web
  4. Introduction to HTML
    1. Introduction to HTML overview
    2. Getting started with HTML
    3. What's in the head? Metadata in HTML
    4. HTML text fundamentals
    5. Creating hyperlinks
    6. Advanced text formatting
    7. Document and website structure
    8. Debugging HTML
    9. Assessment: Marking up a letter
    10. Assessment: Structuring a page of content
  5. Multimedia and embedding
    1. Multimedia and embedding overview
    2. Images in HTML
    3. Video and audio content
    4. From object to iframe — other embedding technologies
    5. Adding vector graphics to the Web
    6. Responsive images
    7. Assessment: Mozilla splash page
  6. CSS — Styling the Web
  7. Introduction to CSS
    1. Introduction to CSS overview
    2. How CSS works
    3. CSS syntax
    4. Selectors introduction
    5. Simple selectors
    6. Attribute selectors
    7. Pseudo-classes and pseudo-elements
    8. Combinators and multiple selectors
    9. CSS values and units
    10. Cascade and inheritance
    11. The box model
    12. Debugging CSS
    13. Assessment: Fundamental CSS comprehension
  8. Styling text
    1. Styling text overview
    2. Fundamental text and font styling
    3. Styling lists
    4. Styling links
    5. Web fonts
    6. Assessment: Typesetting a community school homepage
  9. Styling boxes
    1. Styling boxes overview
    2. Box model recap
    3. Backgrounds
    4. Borders
    5. Styling tables
    6. Advanced box effects
    7. Assessment: Creating fancy letterheaded paper
    8. Assessment: A cool-looking box
  10. CSS layout
    1. CSS layout overview
    2. Floats
    3. Positioning
    4. Practical positioning examples
    5. Flexbox
    6. Grids
  11. JavaScript — Dynamic client-side scripting
  12. JavaScript first steps
    1. JavaScript first steps overview
    2. What is JavaScript?
    3. A first splash into JavaScript
    4. What went wrong? Troubleshooting JavaScript
    5. Storing the information you need — Variables
    6. Basic in JavaScript — Numbers and operators
    7. Handling text — Strings in JavaScript
    8. Useful string methods
    9. Arrays
    10. Assessment: Silly story generator
  13. JavaScript building blocks
    1. JavaScript building blocks overview
    2. Making decisions in your code — Conditionals
    3. Looping code
    4. Functions — Reusable blocks of code
    5. Build your own function
    6. Function return values
    7. Introduction to events
    8. Assessment: Image gallery
  14. Introducing JavaScript objects
    1. Introducing JavaScript objects overview
    2. Object basics
    3. Object-oriented JavaScript for beginners
    4. Object prototypes
    5. Inheritance in JavaScript
    6. Working with JSON data
    7. Object building practise
    8. Assessment: Adding features to our bouncing balls demo
  15. Tools and testing
  16. Cross browser testing
    1. Cross browser testing overview
    2. Introduction to cross browser testing
    3. Strategies for carrying out testing
    4. Handling common HTML and CSS problems
    5. Handling common JavaScript problems
    6. Handling common accessibility problems
    7. Implementing feature detection
    8. Introduction to automated testing
    9. Setting up your own test automation environment
  17. Server-side website programming
  18. First steps
    1. First steps overview
    2. Introduction to the server-side
    3. Client-Server overview
    4. Server-side web frameworks
    5. Website security
  19. Django web framework (Python)
    1. Django web framework (Python) overview
    2. Introduction
    3. Setting up a development environment
    4. Tutorial: The Local Library website
    5. Tutorial Part 2: Creating a skeleton website
    6. Tutorial Part 3: Using models
    7. Tutorial Part 4: Django admin site
    8. Tutorial Part 5: Creating our home page
    9. Tutorial Part 6: Generic list and detail views
    10. Tutorial Part 7: Sessions framework
    11. Tutorial Part 8: User authentication and permissions
    12. Tutorial Part 9: Working with forms
    13. Tutorial Part 10: Testing a Django web application
    14. Tutorial Part 11: Deploying Django to production
    15. Web application security
    16. Assessment: DIY mini blog
  20. Further resources
  21. Advanced learning material
    1. WebGL: Graphics processing
  22. Common questions
    1. HTML questions
    2. CSS questions
    3. How the Web works
    4. Tools and setup
    5. Design and accessibility
  23. How to contribute