hamidreza abedi
hamidreza abedi
hello and thank you for this great package. can you help me with using the package and redis with TLS connections? how can I configure that?
Hello and thank you for great work. I need the bot to read messages and if the messages are based on the algorithm I gave it, send some messages on...
discord link in community section is invalid. - [discord](https://github.com/DjangoEx/python-engineer-roadmap/blob/main/README.md#devops)
I have this list view that requires pagination and i have a generator for paginating but i keep getting this warning: ``` Cannot cache component '' because it is not...
I have a parent child model and i want if the parent object got deleted all the children get deleted too (safe delete in my case): ``` class Review(SafeDeleteModel): _safedelete_policy...
1. What did you do? So I tried to use the validation feature and added this struct: ```go type updateRequest struct { Name string `valid:"Required" form:"name" json:"name"` } ``` Then...
So I'm trying to do some aggregations and when I try to do sth like this: ``` actions_filter = Action.objects.filter( target_object_id=OuterRef("pk"), verb=ContentActivityType.VIEW_CONTENT, ) view_subquery = Subquery( actions_filter.values("target_object_id") .annotate(views_count=Count("actor_object_id", distinct=True)) .values("views_count")[:1]...
When you define an inline date picker without extra settings in inline admin and allow adding instances by clicking 'Add...', it seems that the date picker isn't initialized and does...
Sometimes, when entering birth dates, users need to click repeatedly to select a year like 1350. Is there a way to set the year dropdown to display a range of...