Ive been trying to get ckeditor working with the CMS. I cant seem to get inline images working
with filer. I'm trying to add an image from the list of cms plugins and can select the image from
the list of images already uploaded, but on finally…
I have just installed Django-filer following the instructions on the Github page. I am running django 1.4.5 on python 2.7
Some parts of the Settings.py for my app:
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
…
I've created a custom User model based on AbstractUser model. How can I find the right path to my thumbnail to use in a template file ?
models.py
class User(AbstractUser):
photo = FilerImageField(related_name='profile_photo', null=True,…