anufry
anufry
It tries to satisfy django-recaptcha1.3.0 but I am using 2.0.4 now and can not downgrade because of widgets support ImportError: cannot import name 'ReCaptchaV2Checkbox' from 'captcha.widgets' (......env/lib/python3.7/site-packages/captcha/widgets.py)
It is OK when I am using field_name attr like `field_name = 'article'` but there is not possible to use it like `field_name = 'article__supplier'` > Product has no field...
replace ``` if (!$) { $ = django.jQuery; }; $(document).ready(function () { .... ``` to ``` $(document).ready(function () { if (!$) { $ = django.jQuery; }; ..... ``` and all...
This will protect from DB query for each `currency` filter usage (1 query per hour, until model would not be changed)
Now it has so much DB queries as tag occurs in template
Hello! Tried to use with Django 2.2 ` from django.contrib.auth.admin import UserAdmin as BaseUserAdmin class DealersAdmin( ReverseModelAdmin, BaseUserAdmin,): fieldsets = ((None, {'fields': ('email','password','first_name','last_name',)}),) add_fieldsets = ((None, {'fields': ('email','password1', 'password2','first_name','last_name',)}),) inline_type...
Hello, I am new in telegram bots, so I have a beginners question: How can I start 10 similar bots, which are using one app logic? Is it enough to...
Hello! Installed last version with config from example. On server reload got a message from python-telegram-bot: TelegramDeprecationWarning: Old Handler API is deprecated - see https://git.io/fxJuV for details Can you tell...