I have this project where im using sorl-thumbnail to resize and crop my images on the template, in the same project i happen to use django CMS to manage my content, the problem is Django CMS needs 'easy-thumbnails for its filer app both apps use almost similar tags and i end up with this template syntax error placeholder', expected 'endblock'. Did you forget to register or load this tag? when i try to use Django CMS {% placeholder 'mycontent' %} on my template.
How can i use both easy thumbnails and sorl-thumbnail in the same django projects yet they have the same template tags?
464 Views Asked by gathagu At
1
There are 1 best solutions below
Related Questions in PYTHON
- new thread blocks main thread
- Extracting viewCount & SubscriberCount from YouTube API V3 for a given channel, where channelID does not equal userID
- Display images on Django Template Site
- Difference between list() and dict() with generators
- How can I serialize a numpy array while preserving matrix dimensions?
- Protractor did not run properly when using browser.wait, msg: "Wait timed out after XXXms"
- Why is my program adding int as string (4+7 = 47)?
- store numpy array in mysql
- how to omit the less frequent words from a dictionary in python?
- Update a text file with ( new words+ \n ) after the words is appended into a list
- python how to write list of lists to file
- Removing URL features from tokens in NLTK
- Optimizing for Social Leaderboards
- Python : Get size of string in bytes
- What is the code of the sorted function?
Related Questions in DJANGO
- Display images on Django Template Site
- Protractor did not run properly when using browser.wait, msg: "Wait timed out after XXXms"
- Django invalid literal for int() with base 10:
- Removing URL features from tokens in NLTK
- Django Noob URL to from Root Page to sub Page
- Django Admin tables not displaying correctly
- Django with chartkick
- Django urls.py not rendering correct template
- django form errors before submit
- django admin: custom app_index with context
- Display multiple models in one view in Django
- Unexpected NoReverseMatch error when using include() in urls patterns
- Search for a key in django.core.cache
- Django webapp (on an Apache2 server) hangs indefintely when importing nltk in views.py
- Django flush won't load fixtures
Related Questions in DJANGO-CMS
- Django-cms : adding a video with a placeholder
- How to use the teaser_text templatetag of cmsplugin-articles 0.2.2
- Django-Haystack with Solr: Searching by page description meta tags
- Django + DjangoCMS signal handlers not being called
- DjangoCMS 3 Filter Available Plugins
- Custom CMSPlugin migrations in Django 1.7
- Is the Suit/Django templates editable for the customization of the admin panel?
- Django CMS apphook namespace
- Using the sites framework, can I create a link between sites?
- How to run migrations for a new server
- Djangocms and django-filer: upload files into a specific folder
- Django-CMS Custom plugin and placeholders
- DjangoCMS and two-factor-auth
- Django-CMS: How to access extended fields of the Title model
- upload image using filerImageField
Related Questions in DJANGO-FILER
- Djangocms and django-filer: upload files into a specific folder
- Migrate existing third-party Django model to new customized model
- django-filer - AttributeError: 'Manager' object has no attribute '_inherited'
- Django test model with FilerImageField
- Integrating django-filer into djangocms-text-ckeditor
- How to crop an image selected with django-filer in django admin
- How to programmatically fill or create filer.fields.image.FilerImageField?
- How can i use both easy thumbnails and sorl-thumbnail in the same django projects yet they have the same template tags?
- How to select a random file from a folder that where uploaded with django-filer
- django-filer: FilerFile model not being saved; NoneType error raised instead. Why?
- Django filer IntegrityError at /admin/filer/folder/
- An admin for model "CustomUser" has to be registered to be referenced by FolderAdmin.autocomplete_fields
- Django-filer PIL convert and override original
- What's the rationale of using properties instead of fields within the File model of django-filer
- Django filer - PolymorphicTypeInvalid ContentType 37 does not point to a subclass
Related Questions in EASY-THUMBNAILS
- Specify a filename suffix with easy-thumbnails in django
- Upload photo from Android device to Django backend and save it to database
- Get image thumbnail from easy-thumbnails by image location
- Django easy-thumbnails plugin makes darker images
- How can i use both easy thumbnails and sorl-thumbnail in the same django projects yet they have the same template tags?
- Padded fit with easy thumbnails
- Django easy_thumbnails and post_delete
- Using easy-thumbnails (or other 3rd party library) with jinja2 in Django
- Resizing the original source if width exceeds "x" value (django + easy-thumbnails)
- Extra alias thumbnail generated
- Easy-thumbnails not generated for images with uppercase extensions
- Django easy-thumbnails vs sorl-thumbnail differences
- Django easy-thumbnails serialize with Django Rest Framework
- Easy Thumbnails - How to test a view that contains with ThumbnailerImageField in DRF
- Does Easy-Thumbnails use a "box" parameter in order to crop an image?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
looks like others have had this issue, and it remains unsolved: Django template tags with same name
If it's feasible to give up the use of one option or another, you could try loading one tag library before the other.
If that's not feasible, you still may have to try loading one tag library before the other, but make another tag library which imports the abandoned library, and makes another, uniquely-named tag which explicitly calls the inaccessible tag