Re: Django email | Gmail | Outlook

2022-05-30 Thread Dev femibadmus
Wow 😲 thanks 🙏 so much Paul On Mon, May 30, 2022, 13:40 Paul Kudla (SCOM.CA Internet Services Inc.) < p...@scom.ca> wrote: > > Unfortunately gmail / outlook although on different time tables will > force oauth2 shortly without end users being able to avoid this. > > Thus outlook protocol will not

Re: Question about from integer models

2022-05-30 Thread Hansel Johansyah
Hi Thank you for response anyway I have trying your tips, but It not works On Monday, May 30, 2022 at 8:08:02 PM UTC+7 chir...@gmail.com wrote: > Hi, > > As per my understanding, the thing you want to achieve can be done using > the below code. > > > {% for i in number %} >{{i}} >

Re: Question about from integer models

2022-05-30 Thread Chiranjeevi Kodati
Hi, As per my understanding, the thing you want to achieve can be done using the below code. {% for i in number %} {{i}} {% endfor %} In that way, if the queryset contains 1 to 6 integers, you will loop over them and create 6 li items and place it inside ul tag element.

Re: Django email | Gmail | Outlook

2022-05-30 Thread Paul Kudla (SCOM.CA Internet Services Inc.)
Unfortunately gmail / outlook although on different time tables will force oauth2 shortly without end users being able to avoid this. Thus outlook protocol will not really be an option. I have researched this with python and alike. right now there does not seem to be any turn key soultions

How to prevent return full data response when lookup expression is not in list

2022-05-30 Thread Sencer Hamarat
Hello, There is a Filter set for django model, and fields has their predefined lookup expressions class AModel(models.Model): afield = models.CharField() bfield = models.IntegerField() class AClass(django_filters.FilterSet): class Meta: model = AModel fields = {

Auto Template Update

2022-05-30 Thread Dev femibadmus
fine! we can submit form with ajax, and update little tag b cant update all. *Instagram* auto update likes, new post, message or even notification without any event, even if a event itself action how possible to update differents post likes, notification blah blah blah blah blah..*How???* -

Django email | Gmail | Outlook

2022-05-30 Thread Dev femibadmus
*Google* no longer support less seureappswhat next? is there anyway we can use gmail for Django email? if no way please send the best lesson for *Outlook* configuration :) -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscr

Question about from integer models

2022-05-30 Thread Hansel Johansyah
Hi Everyone I wanna question about the integer would input by models, with some class ClassName numb = models.IntegerField() and the views is : number = ClassName.objects.values_list('numb', flat=True).distinct() then the templates is : 1 2 3 4 5 so i call the number from django admin with {