Keeps submited files when validation errors occure.
Project description
# django-file-resubmit
In Django project you have forms with FileField, ImageField. Everything works great, but
when ValidationError is raised, you have to reselect all files and images again. It is
kind of annoying. **django-file-resubmit** solves this problem.
It works with FileField, ImageField and sorl.thumbnail.ImageField.
The original idea was developed by team of https://github.com/generalov/django-resubmit.
django-file-resubmit was started to avoid some restrictions of django-resubmit, such as
supporting last version of sorl-thumbnail, simplify configuration and integration with a project.
## How does it work?
Here are advanced widgets for FileField and ImageField. When you submit files, every widget
saves its file in cache. And when ValidationError is raised, widgets restore files from cache.
# Requirements
- sorl-thumbnail, http://thumbnail.sorl.net/
# Installation
$ pip install -e git+git://github.com/un1t/django-file-resubmit.git#egg=file_resubmit
# Configuration
Add `"file_resubmit"` to `INSTALLED_APPS`.
INSTALLED_APPS = {
...
'sorl.thumbnail',
'file_resubmit',
...
}
Setup cache in settings.py.
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
},
"file_resubmit": {
'BACKEND': 'django.core.cache.backends.filebased.FileBasedCache',
"LOCATION": project_path('data/cache/file_resubmit')
},
}
# Examples
## Admin example
from django.contrib import admin
from file_resubmit.admin import AdminResubmitMixin
class ModelAdmin(AdminResubmitMixin, ModelAdmin):
pass
## Widgets examples
from django.forms import ModelForm
from file_resubmit.admin import AdminResubmitImageWidget, AdminResubmitFileWidget
class MyModelForm(forms.ModelForm)
class Meta:
model = MyModel
widgets = {
'picture': AdminResubmitImageWidget,
'file': AdminResubmitFileWidget,
}
# Licensing
django-file-resubmit is free software under terms of the MIT License.
**Copyright (C) 2011 by Ilya Shalyapin**, ishalyapin@gmail.com
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
In Django project you have forms with FileField, ImageField. Everything works great, but
when ValidationError is raised, you have to reselect all files and images again. It is
kind of annoying. **django-file-resubmit** solves this problem.
It works with FileField, ImageField and sorl.thumbnail.ImageField.
The original idea was developed by team of https://github.com/generalov/django-resubmit.
django-file-resubmit was started to avoid some restrictions of django-resubmit, such as
supporting last version of sorl-thumbnail, simplify configuration and integration with a project.
## How does it work?
Here are advanced widgets for FileField and ImageField. When you submit files, every widget
saves its file in cache. And when ValidationError is raised, widgets restore files from cache.
# Requirements
- sorl-thumbnail, http://thumbnail.sorl.net/
# Installation
$ pip install -e git+git://github.com/un1t/django-file-resubmit.git#egg=file_resubmit
# Configuration
Add `"file_resubmit"` to `INSTALLED_APPS`.
INSTALLED_APPS = {
...
'sorl.thumbnail',
'file_resubmit',
...
}
Setup cache in settings.py.
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
},
"file_resubmit": {
'BACKEND': 'django.core.cache.backends.filebased.FileBasedCache',
"LOCATION": project_path('data/cache/file_resubmit')
},
}
# Examples
## Admin example
from django.contrib import admin
from file_resubmit.admin import AdminResubmitMixin
class ModelAdmin(AdminResubmitMixin, ModelAdmin):
pass
## Widgets examples
from django.forms import ModelForm
from file_resubmit.admin import AdminResubmitImageWidget, AdminResubmitFileWidget
class MyModelForm(forms.ModelForm)
class Meta:
model = MyModel
widgets = {
'picture': AdminResubmitImageWidget,
'file': AdminResubmitFileWidget,
}
# Licensing
django-file-resubmit is free software under terms of the MIT License.
**Copyright (C) 2011 by Ilya Shalyapin**, ishalyapin@gmail.com
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-file-resubmit-0.3.2.tar.gz
.
File metadata
- Download URL: django-file-resubmit-0.3.2.tar.gz
- Upload date:
- Size: 4.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 801df4ef9793cfb858e1a0fc2f8572a136c6ab2e937f1fc16faf071362355fb4 |
|
MD5 | 83898a4ce708984b0e2817cb8d4997bf |
|
BLAKE2b-256 | b8396dd04b1ab552a314c8d0fd639add95e95e8dcf830821d0ad23e7f8d6d89c |