Re: Any open source SMS?

2024-03-08 Thread Vitaly Bogomolov
Hi Our use case: We need to generate OTP code to users upon signup in our application. You can take a look at my solution to this task for Django: https://github.com/vb64/django.admin.auth.emailpin -- You received this message because you are subscribed to the Google Groups "Django

Re: Agricultural and livestock project using python, django and next technologies.

2024-02-19 Thread Vitaly Bogomolov
Hi I am interested https://github.com/vb64 I wrote about the same thing before but I only sent the title XD. The project: I'm working on an interesting project that I think might interest you. This is an online market similar to farmers' and ranchers' markets in the US, but with an online

Re: logging admin accesses

2023-12-15 Thread Vitaly Bogomolov
Is that programically accessible? I want to record it in the database. from django.contrib.admin.models import LogEntry logs = LogEntry.objects.all() #or you can filter, etc. -- You received this message because you are subscribed to the Google Groups "Django users" group. To

Re: Dashboard with plotting graph

2023-06-21 Thread Vitaly Bogomolov
I like https://dygraphs.com/ It's lightweight and have all option for common plots. среда, 21 июня 2023 г. в 04:53:09 UTC+4, DieHardMan 300: > Hello, I hope everyone have a good day. I want to start building dashboard > with the plotting graph in my Django 4.2 web application. So I want some

Re: django model method

2023-02-09 Thread Vitaly Bogomolov
You can look towards Django Q-objects . This filtering method is implemented in the MultiChoiceExt filter of my DjangoAdminFilters