﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
27839	Add a native file upload progress bar through forms	Vipin Chaudhary	nobody	"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"	New feature	closed	Forms	dev	Normal	duplicate	file upload, forms	vipin14119@…	Unreviewed	0	0	0	0	0	1
