mirror of
https://github.com/django/django.git
synced 2025-08-04 02:48:35 +00:00
Alphabetized imports in various docs.
Follow-up ofd97cce3409
and7d3fe36c62
.
This commit is contained in:
parent
1b7d524cfa
commit
35319bf12c
36 changed files with 71 additions and 71 deletions
|
@ -105,7 +105,7 @@ template output the commas in a :ttag:`for` loop.
|
|||
Here's an example, which generates the same CSV file as above::
|
||||
|
||||
from django.http import HttpResponse
|
||||
from django.template import loader, Context
|
||||
from django.template import Content, loader
|
||||
|
||||
def some_view(request):
|
||||
# Create the HttpResponse object with the appropriate CSV header.
|
||||
|
|
|
@ -46,8 +46,8 @@ objects are file-like objects.
|
|||
|
||||
Here's a "Hello World" example::
|
||||
|
||||
from reportlab.pdfgen import canvas
|
||||
from django.http import HttpResponse
|
||||
from reportlab.pdfgen import canvas
|
||||
|
||||
def some_view(request):
|
||||
# Create the HttpResponse object with the appropriate PDF headers.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue