﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
33756	Code Cleanup on Tutorial Part 3	Kaleb Nyquist	nobody	"In the ""Writing Your First App"" Tutorial Part 3, under the subsection ""Write Views That Actually Do Something"" (https://docs.djangoproject.com/en/4.0/intro/tutorial03/#write-views-that-actually-do-something), there is an explanation of the render() shortcut as an alternative to HttpResponse() + loader. The explanation includes two code snippets for comparison.

One difference between the code snippets that obfuscates rather than illuminates the difference is the line(s):

    context = {
        'latest_question_list': latest_question_list,
    }

and 

    context = {'latest_question_list': latest_question_list}

If this was consistently a multiline or single line across the snippets, that would make it easier for beginning Django users to glance at and understand the difference.
 
Screenshot attached to illustrate."	Cleanup/optimization	new	Documentation	4.0	Normal				Unreviewed	0	0	0	0	1	0
