mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-03 06:04:53 +00:00
28 lines
580 B
Plaintext
28 lines
580 B
Plaintext
[
|
|
{ type: install
|
|
message: <<EOM
|
|
Add "filer" and related apps to your INSTALLED_APPS setting and run
|
|
manage.py migrate:
|
|
|
|
INSTALLED_APPS = [
|
|
...
|
|
'easy_thumbnails',
|
|
'filer',
|
|
'mptt',
|
|
...
|
|
]
|
|
|
|
Note that easy_thumbnails also has database tables and needs a
|
|
manage.py migrate.
|
|
|
|
For easy_thumbnails to support retina displays (recent MacBooks, iOS) add to
|
|
settings.py:
|
|
|
|
THUMBNAIL_HIGH_RESOLUTION = True
|
|
|
|
If you forget this, you may not see thumbnails for your uploaded files. Adding
|
|
this line and refreshing the admin page will create the missing thumbnails.
|
|
EOM
|
|
}
|
|
]
|