Enric Caumons
Enric Caumons
I've implemented a simple django filter as a workaround to this issue: ``` from textwrap import wrap from django import template register = template.Library() @register.filter def text_wrap(text, width=70): """ The...
I've done further investigations on this issue. At the moment of reporting it I was already using the slice strategy. My conclusion is that using a chain object is "a...
I don't know if there is a better solution, but I found a workaround, modifying the field's queryset from inside the form constructor (`__init__` method). For example: ``` class FooForm(ModelForm):...
After further investigation in the source code, I see that the problem is located in `avatar_file_path()` method located in the `models.py` file. There is a comment that explicitly says that...
Hi @CaselIT, thank you very much for your fast response! I've just added the code of one of the generated migrations so you can see how they look like. Yes,...
Hi! Thanks to @clarete's answer at https://github.com/flask-admin/flask-admin/issues/782, I've found that the issue is caused by the method override `get_id()` defined at https://github.com/lingthio/Flask-User/blob/master/flask_user/user_mixin.py#L16. This overriden method `get_id()` is called from https://github.com/maxcountryman/flask-login/blob/master/flask_login/mixins.py#L41...
Hi, Have you tried using a default module such as res.partner to check if that works?
Hi all! This connector class was used in OpenERP 6.0, I'm not using it anymore and I will not maintain it, so I will not expend more time trying to...