﻿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
4113	dynamic destinations for FileField.upload_to	August Bigelow <wip@…>	nobody	"From my experience, the current setup for the FileField and ImageField attribute ""upload_to"" is too inflexible. While save_FIELD_file is very quick and easy, telling the core where to put that file is not. I think giving another class contribution could make things much more flexible.

I believe usage akin to this would work sufficiently:
{{{
#!python
class TestModel(Model):
    file = FileField()

some_number = 145
t = TestModel()
t.set_file_upload_to(""desired/path/%s/"" % some_number)
}}}

Giving the programmer the ability to change the destination folder on the fly would allow for more dynamic destinations. You'd be able to use IDs from other objects and use them here."		closed	Core (Other)	dev		duplicate			Design decision needed	0	0	0	0		
