Marcos Guedes

Results 22 comments of Marcos Guedes

Hi. This is an ancient bug but I've crossed paths with this today and solved it using `sys.setdefaultencoding('utf8')` PS: This method is [highly discouraged](https://stackoverflow.com/a/3828742) but since I haven't found a...

Happens to me too Modeltranslation: 0.12.2 Django: 1.11.14 Python: 3.6.5 I've tried both using TranslationAdmin with manual js/css file referencing and using TabbedExternalJqueryTranslationAdmin, TabbedDjangoJqueryTranslationAdmin and TabbedDjango15JqueryTranslationAdmin. They didn't work. What...

This is an old issue but for anyone coming across this as I did, it's undocumented but it's doable. My environment: - Django 3.2 - django-polymorphic 3.0.0 - django-modeltranslation 0.17.3...

Fixed in PR #243 . Still, I think it's prudent to leave it open until the next PyPI release

Hi there! I had the same problem. What I did as a workaround was subclassing App (which in turn would load a subclassed UrlGetter) and subclass Client. ``` import six...

Great work! I think you could, however, make it better by adding `on_delete` on `created_by` (thus adding support to Django 2.x) and maintaining consistency with previous `on_delete` calls ```diff diff...

Tested with Python 3, Django 1.11 and Django CMS 3.5.3. It looks great and it works fine ![selection_145](https://user-images.githubusercontent.com/6418368/51759004-1a15f600-20bf-11e9-9179-48d581799661.png)

@lmanzurv nice tip! I've overridden LocationPlugin temporarily to patch this issue ``` from cms.plugin_pool import plugin_pool from djangocms_gmaps.cms_plugins import LocationPlugin as OriginalLocationPlugin class LocationPlugin(OriginalLocationPlugin): render_plugin = True render_template = 'djangocms_gmaps/dummy_location_template.html'...

@lmanzurv I've created a pull request based on your solution. I hope @mishbahr can take a look at this soon and update it on PyPI