mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	[3.0.x] Fixed #30906 -- Fixed an example of using the template system to generate CSV.
Backport of 05c3ef26a2 from master
			
			
This commit is contained in:
		
				
					committed by
					
						 Mariusz Felisiak
						Mariusz Felisiak
					
				
			
			
				
	
			
			
			
						parent
						
							2c397f35ed
						
					
				
				
					commit
					6df42e6187
				
			| @@ -104,7 +104,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 Context, loader | ||||
|     from django.template import loader | ||||
|  | ||||
|     def some_view(request): | ||||
|         # Create the HttpResponse object with the appropriate CSV header. | ||||
| @@ -119,9 +119,7 @@ Here's an example, which generates the same CSV file as above:: | ||||
|         ) | ||||
|  | ||||
|         t = loader.get_template('my_template_name.txt') | ||||
|         c = Context({ | ||||
|             'data': csv_data, | ||||
|         }) | ||||
|         c = {'data': csv_data} | ||||
|         response.write(t.render(c)) | ||||
|         return response | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user