Changes between Version 1 and Version 2 of Ticket #33756
- Timestamp:
- May 31, 2022, 11:38:52 AM (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #33756
- Property Resolution → invalid
- Property Status new → closed
-
Ticket #33756 – Description
v1 v2 2 2 3 3 One difference between the code snippets that obfuscates rather than illuminates the difference is the line(s): 4 4 {{{ 5 5 context = { 6 6 'latest_question_list': latest_question_list, 7 7 } 8 8 }}} 9 9 and 10 10 {{{ 11 11 context = {'latest_question_list': latest_question_list} 12 12 }}} 13 13 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. 14 14