I have some model class with a filer.fields.image.FilerImageField as a field.
from filer.fields.image import FilerImageField
class ModelName(Model):
icon = FilerImageField(null=True, blank=True)
How to programmatically create or fill an icon…
I'm using django-filer for the first time, and it looks great, and work pretty well.
But all my images are being uploaded to the 'Unsorted Uploads' folder, and I can't figure out a way to put them in a specific one. This strikes me as a fundamental…
How do I invoke the upload widget outside Admin?
Using the standard form below does not work. The widget is corrupted.
forms.py
class PhotoAdd(forms.ModelForm):
class Meta:
model = Photo
fields =…
Django filer is an awesome tool for managing files, it detects duplicates and organizes files based on their hashes in folders, has great UI for managing files and folders and handles file history and permissions.
I read some of the source code and…
The images that are generated by django-filer (or easy_thumbnails?) are so little that it is hard for me to recognize the preview images. How can I increase the preview / thumbnail size in the admin overview?
I have a problem in a new Django app with filer.
I can upload an image from disk, but I can't select
this image to choose it. There is no arrow to pick up the image.
This is my screen
enter image description here
The django-filer documentation makes no mention of how to correctly create folder and save the images savely inside.
My scenario:
I have different users that can upload images through the frontend. Right now every FilerImage I create gets saved in…
I set up djangocms 3.1.0 with django-filer 0.9.11 and I created two custom djangocms plug-ins extending django-filer (as explained in documentation).
Everything works fine but now I need to set just for one of those plug-ins a specific folder in…
Can someone point me in the right direction on how to use Django-filer? I have installed the necessary tools for the filer to work and I get the Filer tab in the admin interface, but when I upload an image to the app I am not able to get the preview…
I've just started using Django-Filer, and I'm a bit lost as to how I can actually reference the images uploaded in the admin system.
I need to display a simple dynamic gallery on a single page, that can handle multiple albums. Each album is a new…
Here is myapp.model
from django.db import models
from filer.fields.image import FilerImageField
class Item(models.Model):
...
image = FilerImageField()
...
I'd like to hack in the middle of the django-filer uploading process and…
Originally my models.py had a field named image using django's models.FileField as seen below:
from django.db import models
class Company(models.Model):
image = models.ImageField(upload_to='uploads/', null=True, blank=True)
Then I've decided…
I currently have a model for reusable images:
class Image(models.Model):
class Meta:
verbose_name = _('Image')
verbose_name_plural = _('Images')
name = models.CharField(
max_length=200,
unique=False,
…
Currently I have started working on Django project given by me for learning purpose.
I have done all kind of necessary setup in my virtualenv and when running migrate command on my project I am getting below kind of dependencies problems as below.
I…
We are experiencing a weird problem. We use Postgresql Schemas and uses request middleware to switch between different schemas.
Keep in mind that the Model -> Content Type ID links differ from schema to schema due to new models made after the first…