#27839: Add a native file upload progress bar through forms
-------------------------------------+-------------------------------------
               Reporter:  Vipin      |          Owner:  nobody
  Chaudhary                          |
                   Type:  New        |         Status:  new
  feature                            |
              Component:  Forms      |        Version:  master
               Severity:  Normal     |       Keywords:  file upload, forms
           Triage Stage:             |      Has patch:  0
  Unreviewed                         |
    Needs documentation:  0          |    Needs tests:  0
Patch needs improvement:  0          |  Easy pickings:  0
                  UI/UX:  1          |
-------------------------------------+-------------------------------------
 Upload Progress bar is really a important tool for form file uploads , i
 know django already have that but it needs cache reading and we need to
 define a different method for that and what i realised that **NOT
 EVERYONE** is able to follow that procedure and its confusing as well .
 So i think there must a native method and customizable view for upload
 progress bar as well.

 For ex we have a form MyForm
 {{{
 class MyForm(forms.Form):
     file = forms.FileField()
 }}}

 Right now this is form for file upload , i think it should hava a extended
 feature like
 {{{
 class MyForm(forms.Form):
     file = forms.FileField()
     progress bar = forms.ProgressBarField(link_to=file)
 }}}

 in this last snippet **progressbar** is linked to field **file** , so user
 have a flexiblity for using and rendering it anywhere in the page.

 Thanks thats all i wanted to share

--
Ticket URL: <https://code.djangoproject.com/ticket/27839>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/053.07ab815f25950d169ca4da407fa776d0%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to