1
0
mirror of https://github.com/django/django.git synced 2025-10-24 06:06:09 +00:00

Fixed #23169 - Misc docs fixes.

This commit is contained in:
areski
2014-08-04 13:29:59 +02:00
committed by Tim Graham
parent 5e06fa1469
commit e4dd8b5dde
3 changed files with 7 additions and 7 deletions

View File

@@ -26,7 +26,7 @@ Consider a simple form containing a :class:`~django.forms.FileField`::
class UploadFileForm(forms.Form):
title = forms.CharField(max_length=50)
file = forms.FileField()
file = forms.FileField()
A view handling this form will receive the file data in
:attr:`request.FILES <django.http.HttpRequest.FILES>`, which is a dictionary