I would like to override the manager class in order to allow content data to be loaded from text files (here on of "/one directory/myPrefix_*") into content field instead of from a database table.
class Things(model.Models):
file = CharField(max_length = 25, primary key = True)
content = TextField()
objects = myManager("/one directory/", "myPrefix_")
I would appreciate to use this class in the admin site, if possible.
Is my wild dream possible?