Re: Having problem with a api data

2020-10-11 Thread surendra bhaskar
Thank you
Surendra Ediga



On Sun, Oct 11, 2020 at 12:55 AM Roger Gammans 
wrote:

> This is really a JavaScript question not a Django one.
>
> But since I can see the problem...  ,
>
> The issue is 'dissmal-info' isn't a valid Js identifier, the browser is
> trying to subtract the nonexistent 'info' variable from the 'dismissal'
> value. You should be able to use ['dismissal-info'] instead of .
> dismissal-info.
>
>
>
>
>
>
>
> On 10 October 2020 07:19:06 BST, surendra bhaskar <
> surendra.bhaska...@siesgst.ac.in> wrote:
> >*I am able to get all data from api but  not able to get certainvalues
> >which have - in between of 2 words*
> >"dismissal": "catch",
> >"SR": 120,
> >"6s": 0,
> >"4s": 2,
> >"M": 0,
> >"B": 10,
> >"R": 12,
> >"dismissal-info": "c Curran b Chawla", <== this type is not
> >working
> >"batsman": "RG Sharma (c)",
> >"pid": "34102"
> >
> >
> >* Trying this code to get data  *
> > document.write(JSON.stringify(data.data.fielding[0].scores[0].SR)) <==
> >working
> > document.write(JSON.stringify(data.data.batting[0].scores[0].batsman))
> ><== working
> >document.write(JSON.stringify(data.data.batting[0].scores[0].dismissal))
> ><== working
> >
>
> >document.write(JSON.stringify(data.data.batting[0].scores[0].dismissal-info))
> ><==showing  info is not defined
> >*I am tried with a lot but finally failed to get this type of data so
> >can
> >you pls help me out *
> >[image: image.png]
> >*Thank You,*
> >*Surendra Ediga*
>
> --
> Sent from my Android device with K-9 Mail. Please excuse my brevity.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAPT84Tm2HpKvA_ggtC3F34TqhfsesNvH75u3-NzAeVDjBG0WRg%40mail.gmail.com.


Re: Need help to create web API for the listing of news.

2020-10-11 Thread Kasper Laudrup

Hi Viplay,

On 10/10/2020 17.31, Viplav Dube wrote:

Hi Kasper Laudrup,
Thanks for your reply, I have done scraper part for a single site and 
performing well. But

Few points I want to share with you ,for that I need help.


Glad to hear you are making progress and hope my input was helpful.

To be honest, I don't really have the time to help you with the more 
specific parts at the moment, but maybe someone else can?


Seems like you're moving in the right direction though so I'm sure 
you'll figure it out.


Thank you for your understanding.

Kind regards,

Kasper Laudrup

--
You received this message because you are subscribed to the Google Groups "Django 
users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/f6da2e9a-68af-812c-3c07-87328fe8bc93%40stacktrace.dk.


Need help with inlineformset

2020-10-11 Thread Marco Paradisi
Hi everyone,

I have the following instruction:

forms.models.inlineformset_factory(Covata, Bird, fields=('rna_ucc', 
'sesso', 'nascita', 'anella', 'razza', 'mutazione', 'portatore',), 
can_delete=True, extra=1)

I want to initialize two fields of the model "Bird" to values taken from 
the form of the model "Covata".

anyone has any hint?

Thanks in advance

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/32896b20-0570-4d8f-b7e0-ab7b023d6d7fn%40googlegroups.com.


Re: How to Add to Django Administration Using Code

2020-10-11 Thread Let's Get Going
Hi everyone. I have created a Django chat app for testing. Two days ago it
was working fine. But from yesterday it is not working as expected. I don't
know where the mistake is.
Can anyone help me with that please?
I am pasting form, models,signup html page and views code.
or if anyone want to help me live then I can share the link of live share
or anydesk code.

#Django-Form

from .models import User_Info
from django.forms import ModelForm
from django.contrib.auth.models import User
from django.contrib.auth.forms import UserCreationForm
from django import forms


class updateForm(ModelForm):

class Meta:
model=User_Info
fields='__all__'
exclude=['user']


class CustomUserCreateForm(UserCreationForm):
class Meta:
model=User
fields=['username','password1','password2','email','first_name',
'last_name']

def same_password(self):
password1=self.cleaned_data['password1']
password2=self.cleaned_data['password2']
try:
password1=password2
except:
raise forms.ValidationError('Passwords are not same.')
return password1




#Django-Views

from django.shortcuts import render
from django.urls import reverse
from django.http import HttpResponseRedirect
from django.contrib.auth import login,logout,authenticate
from .models import  User_Info
from django.contrib import messages
from django.contrib.auth.models import User
from . import forms

# Create your views here.

def index(request):
return render(request,'LC/index.html')

def login_view(request):
if not request.user.is_authenticated:
return HttpResponseRedirect(reverse('loginForm'))
return HttpResponseRedirect(reverse('my_profile'))

def login_request(request):
if request.method=='POST':
username=request.POST['username']
password=request.POST['password']
user=authenticate(request,username=username,password=password)
if user is not None:
login(request,user)
return HttpResponseRedirect(reverse('login'))
else:
return render(request,'LC/login.html',{
'message':'Invalid Credentials.',
'create_message':'Not registered?'

})
return render(request,'LC/login.html',{'message':'Login'})

def signup_view(request):
form=forms.CustomUserCreateForm()
if request.method=='POST':
form=forms.CustomUserCreateForm(request.POST)
if form.is_valid():
username=request.POST['username']
password=request.POST['password1']
form.save()
user=authenticate(request,username=username,password=password)
if user is not None:
login(request,user)
return HttpResponseRedirect(reverse('my_profile'))
else:
return render(request,'LC/signup.html',{'form':form,'message':
'Fill all the fields.'})
return render(request,'LC/signup.html',{'form':form})

def my_profile(request):
if not request.user.is_authenticated:
return HttpResponseRedirect(reverse('index'))
form=forms.updateForm(instance=request.user.user_info)
if request.method=="POST":
form=forms.updateForm(request.POST,request.FILES,instance
=request.user.user_info)
if form.is_valid():
form.save()
return render(request,'LC/my_profile.html',{'form':form})

def users(request):
if not request.user.is_authenticated:
return HttpResponseRedirect(reverse('index'))
users=User.objects.all()
return render(request,'LC/users.html',{'users':users})

def chats(request):
if not request.user.is_authenticated:
return HttpResponseRedirect(reverse('index'))
return render(request,'LC/chats.html')

def logout_view(request):
logout(request)
return render(request,'LC/login.html',{'message':'Logged Out.'})

#Django-Models

from django.db import models
from django.contrib.auth.models import User
from django.db.models.signals import post_save
# Create your models here.


class User_Info(models.Model):
user=models.OneToOneField(User,null=True,on_delete=models.CASCADE)

about=models.TextField(null=True,max_length=1000)
profile_pic=models.ImageField(default='defaultUser.png',null=True,blank=
True)


def create_info(sender,**kwargs):
if kwargs['created']:
user_info=User_Info.objects.create(user=kwargs['instance'])

post_save.connect(create_info,sender=User)


#Html- Signup Form

{%load static%}



  
  
  
  Sign Up | Let's Chat https://fonts.googleapis.com/css2?family=PT+Serif&display=swap"; rel=
"stylesheet">
  



{%if message%}
{{message}}
{%endif%}
  
{%csrf_token%}
{{form.username.label}}
{{form.username}}
{{form.first_name.label}}
{{form.first_name}}
{{form.last_name.label}}
{{form.last_name}}
{{form.email.label}}
{{form.email}} 
{{form.password1.label}}
{{form.password1}} 
{{form.password2.label}}
{{form.password2}} 

Re: How to Add to Django Administration Using Code

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 I can help you in this and related tasks
Best Regards,
Divyesh Khamele

On Sun, 11 Oct 2020, 9:59 pm Let's Get Going,  wrote:

> Hi everyone. I have created a Django chat app for testing. Two days ago it
> was working fine. But from yesterday it is not working as expected. I don't
> know where the mistake is.
> Can anyone help me with that please?
> I am pasting form, models,signup html page and views code.
> or if anyone want to help me live then I can share the link of live share
> or anydesk code.
>
> #Django-Form
>
> from .models import User_Info
> from django.forms import ModelForm
> from django.contrib.auth.models import User
> from django.contrib.auth.forms import UserCreationForm
> from django import forms
>
>
> class updateForm(ModelForm):
>
> class Meta:
> model=User_Info
> fields='__all__'
> exclude=['user']
>
>
> class CustomUserCreateForm(UserCreationForm):
> class Meta:
> model=User
> fields=['username','password1','password2','email','first_name',
> 'last_name']
>
> def same_password(self):
> password1=self.cleaned_data['password1']
> password2=self.cleaned_data['password2']
> try:
> password1=password2
> except:
> raise forms.ValidationError('Passwords are not same.')
> return password1
>
>
>
>
> #Django-Views
>
> from django.shortcuts import render
> from django.urls import reverse
> from django.http import HttpResponseRedirect
> from django.contrib.auth import login,logout,authenticate
> from .models import  User_Info
> from django.contrib import messages
> from django.contrib.auth.models import User
> from . import forms
>
> # Create your views here.
>
> def index(request):
> return render(request,'LC/index.html')
>
> def login_view(request):
> if not request.user.is_authenticated:
> return HttpResponseRedirect(reverse('loginForm'))
> return HttpResponseRedirect(reverse('my_profile'))
>
> def login_request(request):
> if request.method=='POST':
> username=request.POST['username']
> password=request.POST['password']
> user=authenticate(request,username=username,password=password)
> if user is not None:
> login(request,user)
> return HttpResponseRedirect(reverse('login'))
> else:
> return render(request,'LC/login.html',{
> 'message':'Invalid Credentials.',
> 'create_message':'Not registered?'
>
> })
> return render(request,'LC/login.html',{'message':'Login'})
>
> def signup_view(request):
> form=forms.CustomUserCreateForm()
> if request.method=='POST':
> form=forms.CustomUserCreateForm(request.POST)
> if form.is_valid():
> username=request.POST['username']
> password=request.POST['password1']
> form.save()
> user=authenticate(request,username=username,password=password)
> if user is not None:
> login(request,user)
> return HttpResponseRedirect(reverse('my_profile'))
> else:
> return render(request,'LC/signup.html',{'form':form,'message':
> 'Fill all the fields.'})
> return render(request,'LC/signup.html',{'form':form})
>
> def my_profile(request):
> if not request.user.is_authenticated:
> return HttpResponseRedirect(reverse('index'))
> form=forms.updateForm(instance=request.user.user_info)
> if request.method=="POST":
> form=forms.updateForm(request.POST,request.FILES,instance
> =request.user.user_info)
> if form.is_valid():
> form.save()
> return render(request,'LC/my_profile.html',{'form':form})
>
> def users(request):
> if not request.user.is_authenticated:
> return HttpResponseRedirect(reverse('index'))
> users=User.objects.all()
> return render(request,'LC/users.html',{'users':users})
>
> def chats(request):
> if not request.user.is_authenticated:
> return HttpResponseRedirect(reverse('index'))
> return render(request,'LC/chats.html')
>
> def logout_view(request):
> logout(request)
> return render(request,'LC/login.html',{'message':'Logged Out.'})
>
> #Django-Models
>
> from django.db import models
> from django.contrib.auth.models import User
> from django.db.models.signals import post_save
> # Create your models here.
>
>
> class User_Info(models.Model):
> user=models.OneToOneField(User,null=True,on_delete=models.CASCADE)
>
> about=models.TextField(null=True,max_length=1000)
> profile_pic=models.ImageField(default='defaultUser.png',null=True,
> blank=True)
>
>
> def create_info(sender,**kwargs):
> if kwargs['created']:
> user_info=User_Info.objects.create(user=kwargs['instance'])
>
> post_save.connect(create_info,sender=User)
>
>
> #Html- Signup Form
>
> {%load static%}
> 
> 
> 
>"image/x-icon">
>   
>   
>   Sig

Re: Need help with inlineformset

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices
Best Regards,
Divyesh Khamele

On Sun, 11 Oct 2020, 9:08 pm Marco Paradisi,  wrote:

> Hi everyone,
>
> I have the following instruction:
>
> forms.models.inlineformset_factory(Covata, Bird, fields=('rna_ucc',
> 'sesso', 'nascita', 'anella', 'razza', 'mutazione', 'portatore',),
> can_delete=True, extra=1)
>
> I want to initialize two fields of the model "Bird" to values taken from
> the form of the model "Covata".
>
> anyone has any hint?
>
> Thanks in advance
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/32896b20-0570-4d8f-b7e0-ab7b023d6d7fn%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneWOrn_7RZGGfKGzofF3ksFXu0ydFazJ24ia4K5PMw3DoA%40mail.gmail.com.


Re: Having problem with a api data

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices
Best Regards,
Divyesh Khamele,
Pythonmate

On Sun, 11 Oct 2020, 4:10 pm surendra bhaskar, <
surendra.bhaska...@siesgst.ac.in> wrote:

> Thank you
> Surendra Ediga
>
>
>
> On Sun, Oct 11, 2020 at 12:55 AM Roger Gammans <
> rgamm...@gammascience.co.uk> wrote:
>
>> This is really a JavaScript question not a Django one.
>>
>> But since I can see the problem...  ,
>>
>> The issue is 'dissmal-info' isn't a valid Js identifier, the browser is
>> trying to subtract the nonexistent 'info' variable from the 'dismissal'
>> value. You should be able to use ['dismissal-info'] instead of .
>> dismissal-info.
>>
>>
>>
>>
>>
>>
>>
>> On 10 October 2020 07:19:06 BST, surendra bhaskar <
>> surendra.bhaska...@siesgst.ac.in> wrote:
>> >*I am able to get all data from api but  not able to get certainvalues
>> >which have - in between of 2 words*
>> >"dismissal": "catch",
>> >"SR": 120,
>> >"6s": 0,
>> >"4s": 2,
>> >"M": 0,
>> >"B": 10,
>> >"R": 12,
>> >"dismissal-info": "c Curran b Chawla", <== this type is not
>> >working
>> >"batsman": "RG Sharma (c)",
>> >"pid": "34102"
>> >
>> >
>> >* Trying this code to get data  *
>> > document.write(JSON.stringify(data.data.fielding[0].scores[0].SR)) <==
>> >working
>> > document.write(JSON.stringify(data.data.batting[0].scores[0].batsman))
>> ><== working
>> >document.write(JSON.stringify(data.data.batting[0].scores[0].dismissal))
>> ><== working
>> >
>>
>> >document.write(JSON.stringify(data.data.batting[0].scores[0].dismissal-info))
>> ><==showing  info is not defined
>> >*I am tried with a lot but finally failed to get this type of data so
>> >can
>> >you pls help me out *
>> >[image: image.png]
>> >*Thank You,*
>> >*Surendra Ediga*
>>
>> --
>> Sent from my Android device with K-9 Mail. Please excuse my brevity.
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAPT84Tm2HpKvA_ggtC3F34TqhfsesNvH75u3-NzAeVDjBG0WRg%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneUUDAhr1H21uj6sndoyb1AXmp%3DP8dEYFgS6r2cZDChbpw%40mail.gmail.com.


Re: Need help to create web API for the listing of news.

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices
Best Regards,
Divyesh Khamele,
Pythonmate

On Sun, 11 Oct 2020, 4:39 pm Kasper Laudrup,  wrote:

> Hi Viplay,
>
> On 10/10/2020 17.31, Viplav Dube wrote:
> > Hi Kasper Laudrup,
> > Thanks for your reply, I have done scraper part for a single site and
> > performing well. But
> > Few points I want to share with you ,for that I need help.
>
> Glad to hear you are making progress and hope my input was helpful.
>
> To be honest, I don't really have the time to help you with the more
> specific parts at the moment, but maybe someone else can?
>
> Seems like you're moving in the right direction though so I'm sure
> you'll figure it out.
>
> Thank you for your understanding.
>
> Kind regards,
>
> Kasper Laudrup
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/f6da2e9a-68af-812c-3c07-87328fe8bc93%40stacktrace.dk
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneVgJ8xTn%3D6xK2FzrR%3DARgdJmP6wtr7z9zRbvZHMTdnrFA%40mail.gmail.com.


Re: How to use Topaz T-S460-HSB-R USB Electronic Signature Capture Pad in a Django Project

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Sat, 10 Oct 2020, 7:58 pm Divakar Upadhyay, <
upadhyaydivakar1...@gmail.com> wrote:

> I integrated this device with asp. Net web form.
>
> On Fri, 9 Oct, 2020, 9:09 PM Francis F. Massaquoi, Jr., <
> ffmassaquo...@gmail.com> wrote:
>
>> Hi,
>>
>> I want to use Topaz Electronic Signature Capture Pad in my Django Web
>> Application is it possible? Is there a way to integrate this signature in
>> my Web Application I'm using https://github.com/szimek/signature_pad.
>>
>> Below is a photo of the signature pad.
>> [image: 61b9noIw2mL._AC_SL1274_.jpg]
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/054a19d6-2cee-438c-ab65-10f4a702155cn%40googlegroups.com
>> 
>> .
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAG5yzPD-ThuNsmuL%2B6iEwdy4k3Ezw8fGy-6rzq1ZhqDeBtrm_Q%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneVmttMDYT39Vi0WuQDNQ_HEeR%2BW74SL2YbV63uK77u8Vw%40mail.gmail.com.


Re: Squashmigrations and old dependencies

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Sat, 10 Oct 2020, 9:24 pm Ramon NHB,  wrote:

> Hi,
>
> I have a working set of squashed migrations for my program that consists
> of some 15 applications. The old migration set works fine. The newly
> created squashed migrations work fine. But when I keep them together (as
> required for deployment), I run into circular dependency problems when
> running 'migrate'.
>
> My guess is that the manage 'migrate' command considers all the OLD
> dependencies. It should of course decide which initial migration it will
> apply per application and then only look at the dependencies for those
> migrations. I am worried it considers the old migrations.
>
> I have a work-around, but this could be an improvement to Django (using
> 3.0).
>
> Ramon
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/0b103211-b4c2-4866-92c2-c341de46bce6n%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneXBFYXGSW_gkz97E1_UraG9B8670_Pbsg7CA_OgSxGHzA%40mail.gmail.com.


Re: For Creatives And Developers Only

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Sat, 10 Oct 2020, 4:25 pm Joe Mayami, 
wrote:

> We are building now!!!
>
> Platform will soon be full!!!
>
> If you are a creative, developer join us now!!!
>
> We are recruiting Developers, and Creatives to join our community into
> building personal portfolios, personal development skills, work on Open
> Source Projects, Devops, Collaboration, User Testing and Supports.
>
> Community members includes experts in product designs, python programming,
> data science, creative writers, graphics and designs, artificial
> intelligence and a lot more.
>
> You have only once chance to take your spot or someone else would.
>
> Join Now: https://chat.whatsapp.com/Geld8FNt4QCLGhYpA8DxkG
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/f5f0c98d-7e99-4d45-bf8f-70992eb8a2bfn%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneXch87SENPTmXWS17WJd%2B4_SaNK66frLsW_DVPmiZRFew%40mail.gmail.com.


Re: populate select field based on the selection option

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Sat, 10 Oct 2020, 2:32 pm Eugene TUYIZERE, 
wrote:

> Dear Team,
>
> I have se;ection option where I need to select an option and populate the
> other selection field
>
> this the html code
>
>   id="place_of_birth">
>  
>   Country_name 
>   Other 
> 
> 
> 
> Plece*
> 
>
> 
> 
>
> This is different from dependency drop down because I have two different
> tables where I need data for the first option (country_name) and second one
> (Other). I need codes that can help me to do this task.
> --
> *TUYIZERE Eugene*
>
>
>
> *Msc Degree in Mathematical Science*
>
> *African Institute for Mathematical Sciences (AIMS Cameroon)Crystal
> Garden-Lime, Cameroon*
>
> Bsc in Computer Science
>
> *UR-Nyagatare Campus*
>
> Email: eugene.tuyiz...@aims-cameroon.org
>eugenetuyiz...@gmail.com
>
> Tel: (+250) 7 88 26 33 38, (+250) 7 22 26 33 38
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CABxpZHvU66HQ37CJ3SqZhRGkx34H2t%2BPDT0y%2BWqQb6iqcCm0gA%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneUccp%3DJWRHwCndeHGcu-suaM-0%3D2HTi45jxxsHjVr8SXQ%40mail.gmail.com.


Re: E Commerce Website Assistance

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Sat, 10 Oct 2020, 11:49 am Farai M,  wrote:

> Thanks very much checking it right away
>
> On Sat, Oct 10, 2020, 8:02 AM RANGA BHARATH JINKA <
> bharathjink...@gmail.com> wrote:
>
>> Hi,
>>
>> Check this.
>>
>> https://www.youtube.com/playlist?list=PL-51WBLyFTg0omnamUjL1TCVov7yDTRng
>>
>> All the best
>>
>> On Sat, Oct 10, 2020 at 11:29 AM Farai M 
>> wrote:
>>
>>> Hello all
>>>
>>> I am doing an ecommerce  app can any one who have done a commercial
>>> project assist with maybe documentation and architecture and packages l can
>>> use.
>>>
>>> Thanks in advance
>>>
>>> DM me on +263779046006
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Django users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to django-users+unsubscr...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/CAMeub5PeaY_xeLntMo0K2%3DMQwDFsydb5wB685u%3D6te3r-Rqqwg%40mail.gmail.com
>>> 
>>> .
>>>
>>
>>
>> --
>> Thanks and Regards
>>
>> J. Ranga Bharath
>> cell: 9110334114
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAK5m314ewH%2BLA4LeibUzKEkmCTPpUZLshZ5y%2Bxie2kqxxze9vQ%40mail.gmail.com
>> 
>> .
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAMeub5PJDb47X2Hk-bw%2BFmYvZfybUFjbM8JqbsQXt0D7oomDEA%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneX6aQ7L_s3yEW3rEZKeFdVT%3Dz9sSN0RpWZQSAECGoa%2B_A%40mail.gmail.com.


Re: Changing ordering of model in the admin views

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Sat, 10 Oct 2020, 2:03 pm אורי,  wrote:

> Django users,
>
> I have a User model, in which I defined class Meta with ordering. It's
> defined like this:
>
> class Meta:
> verbose_name = _('user')
> verbose_name_plural = _('users')
> ordering = ('-speedy_net_site_profile__last_visit',)
> swappable = 'AUTH_USER_MODEL'
>
>
> But, I have two apps - Speedy Net and Speedy Match, and in Speedy Match I
> want a different order (
>   ordering = ('-speedy_match_site_profile__last_visit',)
> ). How can I do this?
>
> Thanks,
> אורי
> u...@speedy.net
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CABD5YeEgKXis7GiwL%2BHtmAt8gSwwqaDOVpzOS-M8-NiL%3D5cPWg%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneVB555XkPtoiqzPkmh5ymip5vbTBMtOz-eeCXqjNVnFGw%40mail.gmail.com.


Re: template loading error

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Fri, 9 Oct 2020, 11:40 pm Kasper Laudrup,  wrote:

> On 09/10/2020 19.27, MC CREATIONS wrote:
> > i have problem that am creating a Django project with outside template
> > .but now the problem is that template is not fully leading .only load
> > partial template, here all the static file are correct but no picture
> > and images are not display.how can i solve it .help me
> >
>
> It might just be me, but I have absolutely no idea what you are trying
> to say here.
>
> What's an outside template?
>
> What does it "only load partial template" mean?
>
> How can the static files be correct, if they don't work (I suppose
> that's what yo mean by "no picture and images are not display").
>
> Maybe you could show the relevant parts of the code that you have issues
> with along with a description on what you are trying to achieve and any
> potential error messages?
>
> Kind regards,
>
> Kasper Laudrup
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/4ea8378f-db52-d397-38d9-ce087e11ddf6%40stacktrace.dk
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneUDQ27aC2CQ77%3DOn6EORfp8if9LBkJP90-SNJjoB_4MmQ%40mail.gmail.com.


Re: Django multiple database tests won't start

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Sat, 10 Oct 2020, 12:28 am Alexander Shalin, 
wrote:

>
> Hello forum,
>
> I maintain one application based on Django. It controls Postgresql
> database. Tests cover classes and methods. Everything had been working fine
> and dandy.
>
> I added another Postgresql database and created model classes for its
> tables. No problems with access to two databases. I didn't create any tests
> for new classes and methods.
>
> When I try to launch tests psycopg2 won't find the test database it just
> created moments ago.
>
> I'd appreciate any help.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/26762884-1f31-4c46-a57f-2ac7d5ad1991n%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneVM%2B%3DgrVEjwxkzM8EYkdr2neSP0jGiDQogOTe%3DL-4vXHw%40mail.gmail.com.


Re: File Upload with additional Parameters

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Fri, 9 Oct 2020, 11:20 pm Noel Simela,  wrote:

> Hi guys,
>
> Any suggestions on the best approach to achieve the below with Django's
> upload handlers. I was reviewing documentation at
> https://docs.djangoproject.com/en/3.1/topics/http/file-uploads/
>
> On upload I want to be able to read the contents of the document as per
> below.
>
> Read: –File Name, Author’s Name, Index , count  number pages in the
> document. And populate fields on django template automatically
>
> N.B I am not looking for code, just insight or point me in the right
> direction.
>
> Thank you kindly.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAGBhr7Zkukurzvb%3DZ3JmawO3-AZs%3DjtHjEMgWwtCNn0Ln1fEhQ%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneVGUXZXTm2uu%3Dx_dkErqLnZA-xhdXEERewPrjnmMyySEQ%40mail.gmail.com.


Re: Regarding OTP based login- Django

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Sat, 10 Oct 2020, 1:01 am Gabriel Araya Garcia, <
gabrielaraya2...@gmail.com> wrote:

>
> Gabriel Araya Garcia
> GMI - Desarrollo de Sistemas Informáticos
>
>
> ja,ja,ja,...gracias Carlos
>
> El mar., 29 sept. 2020 a las 17:18, carlos ()
> escribió:
>
>> Gabriel
>> one-time password
>>
>> On Tue, Sep 29, 2020 at 12:34 PM Gabriel Araya Garcia <
>> gabrielaraya2...@gmail.com> wrote:
>>
>>> Que es eso de OTP?,...que significan esas siglas ?
>>>
>>> Gabriel Araya Garcia
>>> GMI - Desarrollo de Sistemas Informáticos
>>>
>>>
>>>
>>>
>>> El vie., 25 sept. 2020 a las 10:55, Rahul Gour ()
>>> escribió:
>>>
 Hello,

 TIA.

 I am new in django, can anyone help me for OTP based login in my app.

 I am working on a ecommerce app and want to login otp based login and
 dont know or getting much on google that how to integrate phone number with
 django user model or want to use custom user model.


 Regards,
 Rahul Gour

 --
 You received this message because you are subscribed to the Google
 Groups "Django users" group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to django-users+unsubscr...@googlegroups.com.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/django-users/CAFi6BNX1qfhDF1zqY7xt4aD%2B7F7mgNXmApxZ%2BquigQYxSgsinw%40mail.gmail.com
 
 .

>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Django users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to django-users+unsubscr...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/CAKVvSDCPEc%2BWqDD4Yk2o9_o9_F9uFT_8TpmheiVMJ_3O%3DTNuPw%40mail.gmail.com
>>> 
>>> .
>>>
>>
>>
>> --
>> att.
>> Carlos Rocha
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAM-7rO3eAK1gOAm5KFOxG9F%3DXxgBt9kmW5zd0DVTNzxXV4PjSg%40mail.gmail.com
>> 
>> .
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAKVvSDBk%3DP%2BKPEQeoDxMVK0YTdmy7AxbjosSDZue9PoiiFcipA%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneW14hp3zwPrmNMjfmrWm8S4upVfaEUGBRyuXXs-Y5%3Dxrg%40mail.gmail.com.


Re: multiple database

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Fri, 9 Oct 2020, 7:06 pm Chetan Ganji,  wrote:

> https://docs.djangoproject.com/en/3.1/topics/db/multi-db/
>
>
> Regards,
> Chetan Ganji
> +91-900-483-4183
> ganji.che...@gmail.com
> http://ryucoder.in
>
>
> On Fri, Oct 9, 2020 at 6:41 PM Khaleel Ahmed H. M. Shariff <
> khaleelahme...@gmail.com> wrote:
>
>> Hi Suhaib,
>> May Peace, Blessings & Mercy of Almighty God be on you!
>>
>> Kindly throw some light on what database you are using. Are you using
>> SQLite (default available with Python) or any other RDBMS like
>> MySQL/Oracle???
>> Awaiting your reply.
>> Thanks in advance.
>>
>>
>> God Bless You!
>> God Bless India!!
>> --
>>
>> Love & Regards
>> Dr. (h.c.) Khaleel Ahmed H. M.
>>
>> Managing Director, Tanzanite Realty India Private Limited
>>
>> ---
>>
>> Human Life is Precious
>> Koran Surah Ma'idah Chapter 5 Verse 32:
>> If anyone killed a person, not in retaliation of murder, or (and) to
>> spread mischief in the land - it would be as if he killed all mankind, & if
>> anyone saved a life, it would be as if he saved the life of all mankind.
>>
>>
>> On Fri, Oct 9, 2020 at 6:05 PM Suhaib Ali  wrote:
>>
>>> Hello everyone,
>>>
>>> i have some doubt regarding django database. i want to create multiple
>>> database according to the user wish. for example i want to create a company
>>> so each and every company needs their own database while creating the
>>> company
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Django users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to django-users+unsubscr...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/cff6452c-e9fd-4126-9ef7-51ea4083c6f6n%40googlegroups.com
>>> 
>>> .
>>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAMjBbiBL91PMWVAmLWZoPSJSiD5v%2B8WzMB9A83UvWOqy5RwAhw%40mail.gmail.com
>> 
>> .
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAMKMUjuZRmcyxsrA%3D%3DUZAh5qWOrP8VMvpZNQdwhKtVY3wBHt5w%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneW8wM9dP-0VyB%2B1cRRffc32h8Yn1Rh9pZx-CGeL25nZrw%40mail.gmail.com.


Re: Pasting images versus uploading

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Fri, 9 Oct 2020, 12:53 pm Mike Dewhirst,  wrote:

> On 9/10/2020 11:55 am, Ryan Nowakowski wrote:
> > Maybe you could swap out the default ImageField widget for
> > TinyMCE-lite HTMLField? Security-wise you probably want to sanitize
> > the input from HTMLField in Django to make sure only img tags are
> allowed.
>
> With the image pasted in, viewing the browser page source it is
> represented as just a string although it does contain ...
>
> ... src="data:image/png;base64,iVBOR ...
>
>
> Are you saying all I have to do is write a clean() method for the
> HTMLField to detect various image types?
>
> Thanks
>
> Mike
>
> >
> > On October 7, 2020 7:02:16 PM CDT, Mike Dewhirst
> >  wrote:
> >
> > Users need to include an image of a molecular structure in a project I'm
> > building. These are small enough that I could limit the size without
> > restricting functionality. The image needs to be printed out for a
> report.
> >
> > What is the best approach?
> >
> > I have implemented a TinyMCE-lite HTMLField which accepts a pasted image
> > and in other systems I have used a Django ImageField for uploading.
> > ImageField is obviously easier on database size but pasting is easier on
> > the users.
> >
> > I'm keen to make the UI easier (by pasting) but I worry it is a
> > vulnerability if abused.
> >
> > Thanks for any advice
> >
> > Cheers
> >
> > Mike
> >
> > -- You received this message because you are subscribed to the Google
> > Groups "Django users" group.
> > To unsubscribe from this group and stop receiving emails from it, send
> > an email to django-users+unsubscr...@googlegroups.com
> > .
> > To view this discussion on the web visit
> >
> https://groups.google.com/d/msgid/django-users/0F5DF089-E571-4730-9D46-7DD41216F4D4%40fattuba.com
> > <
> https://groups.google.com/d/msgid/django-users/0F5DF089-E571-4730-9D46-7DD41216F4D4%40fattuba.com?utm_medium=email&utm_source=footer
> >.
>
>
> --
> Signed email is an absolute defence against phishing. This email has
> been signed with my private key. If you import my public key you can
> automatically decrypt my signature and be sure it came from me. Just
> ask and I'll send it to you. Your email software can handle signing.
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/3611cc83-8ce8-5ccc-5f15-1463da733e26%40dewhirst.com.au
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneWGMKGEGdKT%2BqX1KHLTqw-wNq2yY3DeQr0x9xUiBJ%3DfxA%40mail.gmail.com.


Re: cinema booking

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Fri, 9 Oct 2020, 6:20 am Ryan Nowakowski,  wrote:

> Perhaps something like this?
>
> seat = Seat.objects.first()
> seat.seat_status == 'BOOKED'
>
>
>
> On October 8, 2020 12:46:14 PM CDT, feysel abdu 
> wrote:
>>
>> am sorry for not making it clear, i want to know how to know whether the
>> is booked or not  my exiting model is this
>>
>>
>> class Movies(models.Model):
>> MOVIE_GENERE =(
>> ('A', ' Action'),
>> ('C','Comedy'),
>> ('F','Fantasy'),
>> ('H','Horror'),
>> ('M','Mystery'),
>> ('R', 'Romance'),
>> ('T', 'Thriller'),
>> )
>> title = models.CharField(max_length=20)
>> age = models.IntegerField(default=None)
>> description = models .TextField(blank=True )
>> movie_start_showing_date_since = models.DateTimeField()
>> movie_end_showing_date_till= models.DateTimeField()
>> movie_genre = models.CharField(max_length=1, choices=MOVIE_GENERE)
>> release_data= models.DateField()
>> rating = models.IntegerField()
>> movie_runtime = models.CharField(max_length=15, default='2:00:00',
>> help_text='film length')
>> movie_normal_price = models.FloatField()
>> movie_vip_price= models.FloatField()
>> movie_poster = models.ImageField(upload_to ='uploads/')
>> MOVIE_SHOWING_IN =(
>> ('3D','3D'),
>> ('2D','2D'),
>> )
>> movie_showing_in = models.CharField(max_length=2,choices=MOVIE_SHOWING_IN)
>> rated = models.CharField(max_length=15, default=1, null=True, blank=True)
>>
>>
>> class Cinema (models.Model):
>> cinema_name = models.CharField(max_length=20)
>> cinema_total_seat = models.IntegerField()
>>
>> class Hall (models.Model):
>> hall_id = models.IntegerField()
>> hall_name =models.CharField()
>> number_of_seats = models.IntegerField()
>>
>>
>>
>> class Seat(models.Model):
>> STATUS =(
>> ('CANCELED','Canceled'),
>> ('CONFIRMED','Confirmed'),
>> ('BOOKED','Booked'),
>> )
>> seat_no = models.PositiveSmallIntegerField(blank=False, null=False,
>> unique=True)
>> row_no = models.PositiveSmallIntegerField(blank=False, null=False)
>> seat_name = models.CharField(max_length=3, unique=True)
>> booked_by = models.CharField(max_length=200, blank=True)
>> seat_status = models.CharField(max_length=20, choices=STATUS)
>> number_of_seats= models.IntegerField()
>>
>> class Reservation (models.Model):
>> user_name = models.CharField(max_length=100,unique=True)
>> # ticket_no =models.ForeignKey(Ticket, on_delete=models.CASCADE,
>> related_name="details")
>> row = models.PositiveSmallIntegerField()
>> col = models.PositiveSmallIntegerField()
>> def __str__(self):
>> return "{} - {} - row:{} - col:{}".format(self.username,
>> self.projection_id.time, self.row, self.col)
>>
>>
>>
>>
>>
>>
>> On Thursday, October 8, 2020 at 7:06:40 PM UTC+3 Kasper Laudrup wrote:
>>
>>> On 08/10/2020 13.52, feysel abdu wrote:
>>> > I Was building a cinema  booking app and I am using Django , I want to
>>> > know available seats and booked seats
>>> >
>>>
>>> Consider sharing your existing code and be a bit more specific on where
>>> you need help.
>>>
>>> I don't know what kind of answer you expect to get to a question like
>>> that, if it's even a question?
>>>
>>> Kind regards,
>>>
>>> Kasper Laudrup
>>>
>> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/65251996-02A4-4F99-968D-E59FF7F63C98%40fattuba.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneX%2BFKRRPFdTTDnb%3DOZhMdo%3DSjgt3kbpM4FL-MeT37%2BVKg%40mail.gmail.com.


Re: HELP

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Fri, 9 Oct 2020, 6:34 pm Khaleel Ahmed H. M. Shariff, <
khaleelahme...@gmail.com> wrote:

> HI Omar,
> May Peace, Blessings & Mercy of Almighty God be on you!
>
> I hope you are comfortable with Python?
>
> If yes, the latest official version of Django is 3.1.2
> Kindly execute "*pip  install django*"
> In case you are on windows & it is giving an error
> *"'pip' is not recognized as an internal or external command,*
> *operable program or batch file."*
>
> Execute "*python -m pip install django*"
>
> If anything is not working, let us know we are here to hand hold you.
> Best of luck. Let us know your experience.
> Thanks in advance.
>
>
> God Bless You!
> God Bless India!!
> --
>
> Love & Regards
> Dr. (h.c.) Khaleel Ahmed H. M.
>
> Managing Director, Tanzanite Realty India Private Limited
>
> ---
>
> Human Life is Precious
> Koran Surah Ma'idah Chapter 5 Verse 32:
> If anyone killed a person, not in retaliation of murder, or (and) to
> spread mischief in the land - it would be as if he killed all mankind, & if
> anyone saved a life, it would be as if he saved the life of all mankind.
>
>
> On Fri, Oct 9, 2020 at 6:05 PM Nyirurugo Omar 
> wrote:
>
>> please I'm Django beginner and  i really want to start using Django
>> please i need you help.
>>
>> please any one to guide me please.
>>
>> Thank yu
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/1c1aa31c-1173-4c20-98d3-1fbc5cf27754n%40googlegroups.com
>> 
>> .
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAMjBbiAOTxC88q%3DLUh0%2B49VtqTvQQ6knxWcKDcZFkX%2BVVCcYqw%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneVcET89eS5NAGOgDtr7BBvi%2BZk1cHtkquE-17NyfSddeA%40mail.gmail.com.


Re: m

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Fri, 9 Oct 2020, 6:05 pm Suhaib Ali,  wrote:

> hello
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/3809b416-c744-453a-a1f2-d322c4d922den%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneXXXgOVnEnkuPEyYUD_6n81YPJ4dLbWd3OkiOML%3DF9Hqg%40mail.gmail.com.


Re: Retrieval of Date and data in select text field

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Thu, 8 Oct 2020, 11:28 pm Allison Tretina, 
wrote:

> Can you show us your template, displaying your tags, and your views?
>
> On Thu, Oct 8, 2020 at 12:37 PM Eugene TUYIZERE 
> wrote:
>
>> No one to assist please?
>>
>> Sent from my iPhone
>>
>> On 7 Oct 2020, at 19:02, Eugene TUYIZERE 
>> wrote:
>>
>> I always struggle to retrieve from database to html text field or date
>> field data when I want to edit these data. Only text field data display.
>> Please advise how to display these fields.
>>  When I use:
>>
>>  value = "{{ list.date_of_birth }}" or
>>  value = "list.gender"  for example,  I get an empty field and this works
>> for fields other than date and select.
>>
>> Thank you
>> --
>> *TUYIZERE Eugene*
>>
>>
>>
>> *Msc Degree in Mathematical Science*
>>
>> *African Institute for Mathematical Sciences (AIMS Cameroon)Crystal
>> Garden-Lime, Cameroon*
>>
>> Bsc in Computer Science
>>
>> *UR-Nyagatare Campus*
>>
>> Email: eugene.tuyiz...@aims-cameroon.org
>>eugenetuyiz...@gmail.com
>>
>> Tel: (+250) 7 88 26 33 38, (+250) 7 22 26 33 38
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/3AEBE172-FD06-4D26-9A3D-50FD46250D78%40gmail.com
>> 
>> .
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAJrG93CDdEYchjiK96G%2BvZEdzUXifYHnY1g58%3DvC_qxQmvL8_g%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneVF5kFYJoBuAQMCvQ_n5COwaM%3DrmGN5DHiLg0Qtkj-%2BWg%40mail.gmail.com.


Re: Keep showing required field

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Thu, 8 Oct 2020, 7:00 pm Odedele Temitayo, 
wrote:

> After creating my register view,when trying to register it keeps bringing
> there's a required field,what can i do?
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CALb%2BdgT0PMtfSMaGnPZyLjVrZ0dtAKW%3DQtLCQ%2Bd64V8m5peZwQ%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneXVEDre18BPjePJTPk4WRw9mUZ0TVUUbuhL_O9JkF5UnA%40mail.gmail.com.


Re: How to create sidenav bar in an already created blog

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Thu, 8 Oct 2020, 7:00 pm Odedele Temitayo, 
wrote:

> What do i need to do?,thanks.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CALb%2BdgR%2Bpri78ihS2oNe%3Djw2kRKZ3pdOmEnNR%3Dehg8TBLoMzow%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneXD1uHcPAJ_Gk6%2B9Bq_4PKQYEnoHxNc-gPUcGSkb7X06w%40mail.gmail.com.


Re: Pasting versus uploading

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Fri, 9 Oct 2020, 4:42 am Mike Dewhirst,  wrote:

> On 8/10/2020 10:05 pm, Thiago Luiz Parolin wrote:
> > i am using uppy to allow user make this task more comfortable
> > calling the view (that process upload) by ajax
> > https://uppy.io
>
> Obrigado Thiago, Uppy looks really brilliant but I have a problem with
> javascript. I know I should bite the bullet and really get into it but I
> fear my teeth would not survive.
>
> I don't know for sure but I think it would be easier to build a single
> purpose uploader for a known small image file using Django/python (which
> I have done previously) than to restrict Uppy using a language in which
> I would definitely mess up. I'm also a bit worried about TinyMCE.
>
> My real concern is security ... What could possibly go wrong if I permit
> drag and drop or pasting and storing the result in the database versus a
> controlled file upload using Django ImageField?
>
> Thanks
>
> Mike
>
> >
> > Em qua., 7 de out. de 2020 às 21:11, Mike Dewhirst
> > mailto:mi...@dewhirst.com.au>> escreveu:
> >
> > Users need to include an image of a molecular structure in a model
> > so it
> > can be shown on a report the system produces. They are small
> > enough so I
> > can restrict the size without bothering them.
> >
> > I have implemented a TinyMCE-lite HTMLField for pasting an image and
> > that works. I have also used Django ImageField (and FileField) in
> > other
> > projects.
> >
> > What is the best approach?
> >
> > ImageField is easier on the database (PostgreSQL) but pasting is
> > easier
> > on the users.
> >
> > Is there a third way?
> >
> > Thanks for any advice
> >
> > Cheers
> >
> > Mike
> >
> >
> > --
> > You received this message because you are subscribed to the Google
> > Groups "Django users" group.
> > To unsubscribe from this group and stop receiving emails from it,
> > send an email to django-users+unsubscr...@googlegroups.com
> > .
> > To view this discussion on the web visit
> >
> https://groups.google.com/d/msgid/django-users/b7464b8e-0ad4-c8a6-6bfc-2312ff234021%40dewhirst.com.au
> .
> >
> >
> >
> > --
> > Thiago Luiz Parolin
> >
> > --
> > You received this message because you are subscribed to the Google
> > Groups "Django users" group.
> > To unsubscribe from this group and stop receiving emails from it, send
> > an email to django-users+unsubscr...@googlegroups.com
> > .
> > To view this discussion on the web visit
> >
> https://groups.google.com/d/msgid/django-users/CANbmKyvd7Z652h8wtsuKQt5gQdgE2DbPE96vEoDTqSdMcrFLNQ%40mail.gmail.com
> > <
> https://groups.google.com/d/msgid/django-users/CANbmKyvd7Z652h8wtsuKQt5gQdgE2DbPE96vEoDTqSdMcrFLNQ%40mail.gmail.com?utm_medium=email&utm_source=footer
> >.
>
>
> --
> Signed email is an absolute defence against phishing. This email has
> been signed with my private key. If you import my public key you can
> automatically decrypt my signature and be sure it came from me. Just
> ask and I'll send it to you. Your email software can handle signing.
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/d3dea857-18bf-4228-be86-c6e61fc0a4c3%40dewhirst.com.au
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneUo-cmm8_bpNhRS7i2Qz44Dw5365TBPwueigPTOFuPBUQ%40mail.gmail.com.


Re: Tips for debugging intermittent 502s with Daphne

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Thu, 8 Oct 2020, 3:50 am Keith Hackbarth,  wrote:

> Hey all,
>
> Was hoping to get some advice about how to debug intermittent 502 using
> Daphne
>
>- I observe connection error in the NGIX logs (where I"m using
>proxy_pass) *Connection refused) while connecting to upstream*
>- I observe in NGIX logs that it correlates with spike in inbound
>requests.
>- However, I'm seeing nothing in my Daphne logs to suggest that there
>is an error happening downstream.
>
> I've ruled out slowness and networking issues, so I'm assuming that Daphne
> is running out of connections. But have no idea where I could look to
> validate this assumption or what the next steps would be.
>
> Any advice?
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/89f42085-15f1-4578-a0c2-ee12534bc773n%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneXkp9_iY%3DT1UTOhUCxnCSkHxVqAuWZyjZN11jeVAnXVgw%40mail.gmail.com.


Re: Password see

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Thu, 8 Oct 2020, 5:12 pm kkwaq...@gmail.com, 
wrote:

> *How to se password admin *,
> *Django in store password encrypted format* ,
> *How to retrieve password and decrypted password* .
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/954b7aa9-ab05-48d1-8e79-e9f7ca35407an%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneWrE4U6su_g0PNzbDTaS04gcMmJSWbzSrt-Gir5TXp5LQ%40mail.gmail.com.


Re: Need Guidance to setup Django with MS SQL server

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Thu, 8 Oct 2020, 12:06 am arun sahu,  wrote:

> Hi Geeks,
>
> I need your support for setting up my django project with MS SQL server.
>
> As there is no proper tutorial how to setup with MS SQL server. I tried it
> many times but failed with same errors. Please help me to progress.
>
> Tried below :
>  'ods_database': {
> 'ENGINE': 'sql_server.pyodbc',
> 'NAME': 'test',
> 'HOST': '***',
> 'PORT':'1433',
> 'USER': '***',
> 'PASSWORD': '***',
>
> 'OPTIONS':{
> 'driver': 'ODBC Driver 17 for SQL Server',
> }
> }
>
> Error:
>
> File
> "C:\Dropbox\React\DjangoReact\backend\env\lib\site-packages\sql_server\pyodbc\base.py",
> line 12, in 
> raise ImproperlyConfigured("Django %d.%d.%d is not supported." %
> VERSION[:3])
> django.core.exceptions.ImproperlyConfigured: Django 3.1.2 is not supported.
>
> Thanks,
> Arun
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/8972677a-651e-4465-8a94-5787e9ab4df9n%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneVYg6dX%3Du_-Uar3JM91-XbGzh9CiXdr1yDU8UMwm1HAUA%40mail.gmail.com.


Re: request.FILES.getlist()

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Wed, 7 Oct 2020, 8:35 pm luca72.b...@gmail.com, <
luca72.bertolo...@gmail.com> wrote:

> i have a form that is like:
> class tesoffcliForm(forms.Form)
> image = forms.FileField(label='Image', required = False)
> art_gen = forms.CharField(label='test ', required = False ,widget
> = forms.Textarea())
>
> the view is:
>
> def testrendering(request):
> form = tesoffcliForm()
> number = range(100)
> return render(request, 'polls/test.html', {'form':form,
> 'range':number,  })
>
> the template is:
>
> {% for a in range %}
> {% for field in form %}
> {{ field.label }} {{ field }}
>
> {% if forloop.counter|divisibleby:"2" %}
> 
> {% endif %}
> {% endfor %}
>
> the view for get the data is very easy:
>
> def get_data(request):
>
> art = request.POST.getlist('art_gen')
> image = request.FILES.getlist('image')
>
> the list generated are:
> art = a list of 100 lines, where if i have no imput in the list i find  '
> '
> image = a list with only the file that i have decide to upload.
>
> how can i have also an empty folder in the image list??? for example
> image = [file obg, ' ' , file obj 2, etc]
> if i can't do this i have no corrispondance between art and image when i
> save in the database
>
> Thanks for your help
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/1f83f275-ab62-4b94-b314-81eda7ac2580n%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneV9fo03_KV1uVD2UJcnY4PLaYCZ3gZm6PgLtSZsqArC9A%40mail.gmail.com.


Re: Customer premissions based on Membership plan

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Wed, 7 Oct 2020, 10:28 am Mayank Tripathi, 
wrote:

> Hi All,
>
> I am working on hands-on Django web application, and for this i have to
> provide access to some videos; products based on the Customer Membership
> plan. Like if a Customer is in Basic Plan, then allow only to view 10
> videos or so.. and for Permium Customer, no limit.
>
> For such type of requirement, i was trying to create a model class as
> Customer_membership which will be a one-to-one relationship with my custom
> Customer model class.
>
> Please suggest, on view and templates how will i be restrict the customer
> based on their plan.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/80533c17-f969-4462-b8bb-dda76cac5ec2n%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneW7JCyvb5BXJRjLpJ14p%2BHVwwBrBoX3%3D16jF1D7n0ubpw%40mail.gmail.com.


Re: Best places to learn Software Engineering

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Wed, 7 Oct 2020, 6:14 pm serge buasa,  wrote:

> and udemy of course,always waitin for the promos sessions its always ;-)
>
>
> Le mer. 7 oct. 2020 à 04:11, serge buasa  a écrit :
>
>>
>> https://ocw.mit.edu/courses/find-by-topic/#cat=engineering&subcat=computerscience
>>
>> enjoy it(undergraduate/graduate)
>>
>> Le mer. 7 oct. 2020 à 02:16, Samuel Nogueira  a
>> écrit :
>>
>>> Hi guys!
>>>
>>>
>>>
>>> I know that this group is only for django but I don't have anywhere else
>>> to ask this question, I hope some of you can help me. This semester,   I’m
>>> having an introductory subject of software engineering in my course and  I
>>> am dissatisfied with how the subject is being taught. Because of that I
>>> want to learn it by myself, so I would like to know wich materials and
>>> sources are the best to learn about Software Engineering disciplines.
>>>
>>>
>>>
>>>
>>> -
>>>
>>> Samuel Nogueira Bacelar
>>>
>>>
>>>
>>> GitHub: https://github.com/SamuelNoB
>>>
>>>
>>>
>>> Linkedin: https://www.linkedin.com/in/samuel-nogueira-87800b1aa/
>>>
>>>
>>>
>>>
>>> -
>>>
>>>
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Django users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to django-users+unsubscr...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/2D946DC4-3206-41FC-B2A5-5AAABF9E4EE9%40hxcore.ol
>>> 
>>> .
>>>
>> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAFaTauCm%2B%3D1vFzkBh%3DY6BVWanQJT7Dwdr_EkCBHtTpPsp5fEuA%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneWc_Wz0t6TjT--DeDt4DW3b0bjC95wzZFfJMV5RBkVh-w%40mail.gmail.com.


Re: Django learning source

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Wed, 7 Oct 2020, 5:38 am the_master,  wrote:

> Hello, Do you know which learning source is better? Learning Django from
> online tutorials or directly from the Django documentation ?😁😁
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/d440e24c-f3d9-4f2d-aa15-9a54a9b1858en%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneWK_42a9vUSJRweu%3DSNJuNMVGRmDrdkqS34PgL6_vz1Aw%40mail.gmail.com.


Re: Django queryset filtering

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Thu, 25 Jun 2020, 3:55 am mtp...@gmail.com,  wrote:

> I have a queryset that returns all the expired licenses objects as shown
> below.
>
>
> *qs = 
> LicenseIssue.objects.filter(expiry_date__lte=TODAY).order_by('-expiry_date')*
>
>
> Here is my situation:
> There exists multiple issued licenses of different businesses for year
> 2020 and their  previous issued licenses for the for year 2019, 2018 and so
> on. The above queryset results to listing all expired licenses though I'd
> like to make it possible if there exists issued licenses for year 2020
> their previous issued licenses should not appear in the expired licenses
> queryset. Please advise on this.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/7d5ed088-c21b-4bd3-aba3-0f61c05efa50n%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneVZSFrB8DBWnwesQNMW71aJSPE0jxR7nTsCAr4Px2Gscg%40mail.gmail.com.


Re: Employee Recognition Portal in Django

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Tue, 6 Oct 2020, 7:03 pm Kumar Gaurav,  wrote:

> Hii All,
>
> I have a build an Employee Recognition Portal for a company , where any
> employee can recognize any other employee and everyone can see the post and
> parallelly like and comment on the post.
> Recognition could be a vote of thanks, good work, badge, achievements
> etc.
>
> If somebody has any prior experience in such type of project , please help.
> I am new to Django.
>
> Thank You !
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/21ae8e96-32c1-4dbc-8a72-bd142172c308n%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneX5GVNX2XdetFA4-htLdtbw5qq9gwh0zSkTwWGz3%3DPPbA%40mail.gmail.com.


Re: project information........

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Mon, 5 Oct 2020, 9:03 pm Aswini Das,  wrote:

> dear sir/madam , I want a new project, but I'm starting a new one so I
> need your help.
> plz plz help me
> *PROJECT NAME:-*
> *1. perfoming analysis of metrological data*
> *2. recognizing handwritten digits with scikit-learn ( handwritten digits
> recognition)*
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/2eecb777-dbbe-4d62-aeac-b8e424c1aaeen%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneXwPqgcyKJ_h4__bu6kooy8PoKAksoyGEAd8_v239%3D9ng%40mail.gmail.com.


Re: LOCK AND UNLOCK PAGES TO SPECIFIC USERS

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Wed, 23 Sep 2020, 7:26 am Lightning Bit, <
thelegendofearthretu...@gmail.com> wrote:

> How can one lock a page "unless" the user clicks on a button on a previous
> page? So, for instance, the user will not be able to type in that url and
> get to the page unless they have clicked the button on the previous page at
> some point in time.
>
> Also, how can you lock someone out of a page unless they have a passcode?
> So, for instance, you type in an input and it has to be a specific word.
> Once that word is typed in then you can unlimited access to the page.
>
> Finally, would there be a way to do this by adding someone to a Django
> administration group upon the user clicking a button?
>
> Thanks everyone, I hope someone knows how to resolve this.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/0a723d1a-dc3a-442a-99fd-560d6baa87ben%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneXo5snE%2B1uE%2BEUzKhH2kGj2zmd3vuQuchQTBAyZ86hFsg%40mail.gmail.com.


Re: Ajax, jQuery and Django

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Mon, 5 Oct 2020, 1:35 pm Salima Begum, 
wrote:

> Hi all,
> I have database of zip code for example,
> INSERT INTO pages_zip_code (id, zip, city, st) VALUES
> (1, '00501', 'Holtsville', 'NY'),
> (2, '00544', 'Holtsville', 'NY'),
> (3, '00601', 'Adjuntas', 'PR'),
> (4, '00602', 'Aguada', 'PR'),
> (5, '00603', 'Aguadilla', 'PR'),
> (6, '00604', 'Aguadilla', 'PR'),
> (7, '00605', 'Aguadilla', 'PR'),
> (8, '00606', 'Maricao', 'PR'),
> (9, '00610', 'Anasco', 'PR'),
> (10, '00611', 'Angeles', 'PR'),
> (11, '00612', 'Arecibo', 'PR'),
> (12, '00613', 'Arecibo', 'PR'),
> (13, '00614', 'Arecibo', 'PR'),
> (14, '00616', 'Bajadero', 'PR'),
> (15, '00617', 'Barceloneta', 'PR'),
> (16, '00622', 'Boqueron', 'PR'),
> (17, '00623', 'Cabo Rojo', 'PR'),
> (18, '00624', 'Penuelas', 'PR'),
> (19, '00627', 'Camuy', 'PR');
> If user enters zipcode, Then state and city column should be auto fill by
> using database of zip code in django and jQuery .
> Please let me know how to do this.
>
> Thank You,
> ~Salima
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAMSz6b%3DceNs7rk3zY4aNAS2MpUtAnamPi%2BzsfBx5maK9NZPo%2Bw%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneVLY6Vvx%2BFh-VxEpQFX2%2BgS%2BKYs76t5aak9VxcvkrQDpg%40mail.gmail.com.


Re: Login form

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Mon, 5 Oct 2020, 7:08 pm Moses Omoto,  wrote:

> How to I create a login form to authenticate users in django web
> application using django 3.1
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAKMqJM6XszxR%3DtHWQnohzjvrPXxEXF8BBcVtTfZe0BkoXrot0A%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneV1M6K%3DomRQK8LYY8wfZQbVe_sqArg3GiqR42oRKi_tZQ%40mail.gmail.com.


Re: Ajax, jQuery and Django

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Mon, 5 Oct 2020, 1:33 pm Salima Begum, 
wrote:

> Hi all,
> I have database of zip code for example,
> INSERT INTO pages_zip_code (id, zip, city, st) VALUES
> (1, '00501', 'Holtsville', 'NY'),
> (2, '00544', 'Holtsville', 'NY'),
> (3, '00601', 'Adjuntas', 'PR'),
> (4, '00602', 'Aguada', 'PR'),
> (5, '00603', 'Aguadilla', 'PR'),
> (6, '00604', 'Aguadilla', 'PR'),
> (7, '00605', 'Aguadilla', 'PR'),
> (8, '00606', 'Maricao', 'PR'),
> (9, '00610', 'Anasco', 'PR'),
> (10, '00611', 'Angeles', 'PR'),
> (11, '00612', 'Arecibo', 'PR'),
> (12, '00613', 'Arecibo', 'PR'),
> (13, '00614', 'Arecibo', 'PR'),
> (14, '00616', 'Bajadero', 'PR'),
> (15, '00617', 'Barceloneta', 'PR'),
> (16, '00622', 'Boqueron', 'PR'),
> (17, '00623', 'Cabo Rojo', 'PR'),
> (18, '00624', 'Penuelas', 'PR'),
> (19, '00627', 'Camuy', 'PR');
> If user enters zipcode, Then state and city column should be auto fill by
> using database of zip code in django and jQuery .
> Please let me know how to do this
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAMSz6b%3DM-_czipdp%2BpcfE6ytaweJe6Dw_ZCie4n4-VY-ZakLjg%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneVbuRMs8e8gt-4EUW_if_X2tOqJj9w9Lj8pD1iZi%3DX-FA%40mail.gmail.com.


Re: How to Save or Print the array field in Django using CreateView?

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Sun, 4 Oct 2020, 11:39 pm Kasper Laudrup,  wrote:

> Hi Janak,
>
> On 04/10/2020 08.59, Janak Parmar wrote:
> >
> > Please help me here. I want to convert this array field values into
> > string with comma separated and then save in table.
> >
>
> Not sure what "this array" is in this context, but couldn't you just use
> the standard Python join method?
>
> https://www.tutorialspoint.com/python3/string_join.htm
>
> I don't see any reason to use any Django specific functionality.
>
> Kind regards,
>
> Kasper Laudrup
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/032cea7e-b7bf-5fb0-0474-15e002bf68b9%40stacktrace.dk
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneV3nuHmPYSi-2je4eOEsF-UOEZcSY%3DJbEAUr%3D9r8kMiFw%40mail.gmail.com.


Re: dango admin save_model executing twice

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Sun, 4 Oct 2020, 8:28 pm Navneet Pandey, 
wrote:

> Hi,
>
> I have a huge model on which i am performing some business logic in admin
> section.
>
> the problem is when i save the data as per my business logic, in few cases
> my save_model method is executing twice, causing the success message to
> appear twice also. not able to understand why this is getting executed
> twice only in few cases.
>
> here is a demonstration example:
>
> admin has editable field in list_editable, in which few are columns to
> select specific action
> whenever any action from action column is selected and saved the code runs
> twice however for the normal fields which are only text entry it is working
> fine.
>
> can anyone help on this?
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/32e475bd-249d-4b42-a8fd-05aac1987eaan%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneVGHBAQcuhskO-bWktWQgfx9e6Jki%3DvDCOpD3LM4Wkbgg%40mail.gmail.com.


Re: JavaScript

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Fri, 2 Oct 2020, 9:03 pm Eugene TUYIZERE, 
wrote:

> Dear All,
>
> I did form validation where I can not save empty value. And When I try a
> message displays under the text field. What I want is, in case I type at
> least a single character, the error message to disappear and when I delete
> again, the error to be show, etc
>
> If someone can share with me the example codes, I can appreciate.
>
> Thank you
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/aa2fc4e3-d8ca-474e-9fb6-616bc28e0608n%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneW6eBz9%3DHpNyRoVxbDt%2Bf8ka-K82qCLogeqRdw9LgasqQ%40mail.gmail.com.


Re: Django and Vuejs

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Fri, 2 Oct 2020, 6:38 pm lada...@gmail.com,  wrote:

> what is the best way of joining django and vue. Articles, books will help
> please
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/7d40ed9e-3b59-4e4e-895c-09d15603c286n%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneVs5D6bHXekvHi3i0QrZbqYfyVo5vxEwDZ1UF1bhvF4UA%40mail.gmail.com.


Re: Add user to Group after purchase

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Tue, 29 Sep 2020, 9:54 am Lightning Bit, <
thelegendofearthretu...@gmail.com> wrote:

> Hi All,
>
> How would one add a user to a certain Backend group in the Django
> Administration after a user purchases a particular item? I have played
> around with tons of techniques but nothing is working.
>
> Thanks!
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/ea183d28-fa0f-41ac-acfa-1d49b50a6168n%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneXF8nz0jx7vSsz%2BxMtabQPWsxccSKXuY%3Dv-q8dy_%3DZTKQ%40mail.gmail.com.


Re: Static files not work

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Thu, 1 Oct 2020, 5:53 pm kkwaq...@gmail.com, 
wrote:

> *Error*
>
> *[image: 1.jpg]*
>
> *Error line number 2*
>
> *[image: 2.jpg]*
>
>
> *settingspy*
>
> *[image: 3.jpg]*
>
> *html file*
>
> *[image: 4.jpg]*
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/35152588-7c0e-44e3-b7bc-fc48bfa81b37n%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneXKOCEcMahvg-fhWf65pq%3DQAd6wVNzarr9pM34e8X6Q-g%40mail.gmail.com.


Re: Django Due control in Django

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Thu, 1 Oct 2020, 8:47 pm Eugene TUYIZERE, 
wrote:

> Dear all,
>
> I want to make an application that requires 2 person to complete the user
> creation. I mean when initiator creates  a user, for a user to login in
> application, it requires that an authorizer authorizes the user creation.
> This can also work in case a user is disable in the system. But I do not
> have an idea how to implement this in Django. If some can help I appreciate.
>
> Thank you
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/0c965c18-a0b4-48b0-9518-fcf9da63af0en%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneWD2wYDDBSYpkg8oVgu7b7Wv_msEHzuznZ_%2BZxqsYd4og%40mail.gmail.com.


Re: django testing: widgets

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Thu, 1 Oct 2020, 6:32 pm albert,  wrote:

> Hi
> due to the impact of corona/covid19 I am working in a django-web-project.
> (I am a beginner to those Technologies...)
>
> At the moment I am writing tests for a django application. Basic tests for
> creating get- and post-request with the test server (client) are working.
>
> But now I am facing a file upload request which is triggered by a widget
> of a html page. After reading some settings it calls ajax file upload -
> resulting in a complex request with multiple settings...
>
> Now I'm looking for a way to refer this funcionality mentioned above from
> a django test to get exactly the same request.
>
> Is there a way to do this? (Any hints are welcome... !)
>
> Thanks in advance
> Albert.
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/433bc5ea-ed05-4efa-bd02-96335126b541o%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneWBi1ztu68N%3DH5EGuEk1MYrLH6Z4MaMBwcF6w7O%3D3%3D6rw%40mail.gmail.com.


Re: Retrieving csrftoken value with CSRF_USE_SESSIONS enabled

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Thu, 1 Oct 2020, 6:31 pm Arthur Rio,  wrote:

> Hi,
>
> While working on turning on CSRF_USE_SESSIONS for a project, I noticed
> that the documentation recommends the following to retrieve the value:
>
> ```
> {% csrf_token %}
> 
> const csrftoken =
> document.querySelector('[name=csrfmiddlewaretoken]').value;
> 
> ```
>
> I am wondering why not doing the following instead?
>
> ```
> 
> const csrftoken = “{{ csrf_token }}";
> 
> ```
>
> Is there some other security benefits I’m not thinking of?
>
> Regards
>
> Arthur
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CADOBPEHHoi8yY8cxyMa5jXjcz60MDFiOFW338g%2BAGwqBnEb84A%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneXSsVbUTuj%3D94mzTxf%3DzUj6pw8i8ga33rOcDk02Ty9H3Q%40mail.gmail.com.


Re: Recruitment

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Wed, 23 Sep 2020, 8:11 pm Harish Thiyagharajan, <
harishthiyagh...@gmail.com> wrote:

> I want a interested django user , DM mail for more details , all the
> details including payment can be discussed ...looking for for you guys .
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/7b7956bc-d239-4b63-9194-0644b8a6eeben%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneUFfYw32se9ZsZ5GgeQmhpjeOiYg1MND8-08aMPDmcutw%40mail.gmail.com.


Re: Looking for mentors for Google Summer of Code

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Thu, 1 Oct 2020, 6:31 pm Asjad khan,  wrote:

>
> I am looking for mentors who can train me to so that I am able to be a
> part of this esteemed organization in the next year's Google Summer of Code.
> I have a strong passion for Django and have projects on GitHub too.
> But I need help so that I am fully aware about this community.
> Is there someone who can help me out in this journey?
>
> Thank You
> Asjad Ahmed Khan
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/230a6403-cacb-4c9d-b25b-503e768cb905n%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneVsnxNxrihuMC2evwOC9iC9qbKK7%2Bu92vKrrk46p_UcyQ%40mail.gmail.com.


Re: python/django support

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related tasks at fair prices. Reply or send
email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Thu, 1 Oct 2020, 6:31 pm Subbu Lakk,  wrote:

> guys, I need support for my django application. Here is my requirement
>
> python 3.x/django2.x/django channels/web sockets/rest api/daphne /oracle
> db/java script
>
> if anybody can help, I can pay decent money in indian rupees.
>
> thank you
> subba.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/60d6813f-d2f3-4bc8-a940-7453f9de8879n%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneW9E2J7YJzyox12k4KLLgestCcPEoE4nGr3CQsjOOgb%2Bw%40mail.gmail.com.


Re: Mass Emailing

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related techincal tasks at fair prices. Reply
or send email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate


On Thu, 1 Oct 2020, 1:11 pm degnon...@gmail.com, 
wrote:

>
> Hi, hope every one is doing fine, I have an issue that I have not been
> able to resolve for several months now. I have two apps where  I need to
> send a bunch of emails on a monthly basis, The first app is host on heroku
> and the second on DigitalOcean with dokku, for async task I'm using
> Django_Q and Redis is used as broker, when I need to send 1 or 2 emails, or
> even something like 100, there is no issue, the emails are sent and the
> task is marked as successful in the Django_q admin section, but when I need
> to send just 200 or 500 (send 500 is supposed to be nothing), the task is
> never accomplished, I don't receive any error message sand even if I wait
> for days the task is never marked completed and all emails are not sent, at
> first I think it was a resources issue, in the case of my first app I'm
> using the heroku hobby-dev plan, maybe this is two low for the work I need
> to get done, but for my second app I'm using the 15$ plan on DigitalOcean,
> for just 500 emails i think that's enough, Maybe I should use celery
> instead of Django_q, I don't know, I need to know what are the minimum
> requirements to send a lot(and by a lot I mean something like 50k for
> example) emails with a Django app, and how to do this efficiently. An
> article, a package name, anything would be helpful. I'm using amazon SES
> for both apps. Thanks
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/5d981f11-c996-47bc-8897-72a43b4a76a7n%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneUbkDGzEWvS83mqgm1gPwodjuRCcA%3DEhduSmGVaA8ZPHg%40mail.gmail.com.


Re: How to get logged in user location and save it in database

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related techincal tasks at fair prices. Reply
or send email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate


On Thu, 1 Oct 2020, 9:59 am Ram,  wrote:

> Hi All,
>
> I'm looking for a way to capture location of logged in users in our Web
> App and save that location into our database.
>
> Basically if we could capture this location, we would like to use it
> around members account features.
>
> Please let me know if you have suitable pointers for this.
>
> Thanks in advance,
> ~Ram
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CA%2BOi5F1T1X_Q-GGSqKp4f-fRhY4qfu8Y12-XcNUGcEmUSGQ9AA%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneWsmxMeFUNOoHno2gbR1%3DRWOKQrfWQtH8%2B0Z8rsFkJC%2BQ%40mail.gmail.com.


Re: How to resize image when uploading to the cloudinary?

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related techincal tasks at fair prices. Reply
or send email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate


On Fri, 25 Sep 2020, 8:49 pm abhay santra,  wrote:

>
> Hi,
> I would like to know how to resize any image when uploading to the
> cloudinary in django?
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/d9eaaea0-b3e3-42a5-8ccf-884662258ddcn%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneUSiFYGBqpPvUJCYmwkS7tsPN%3Dp84Lf-bpZC0KAkK%2BdEw%40mail.gmail.com.


Django : Looking for contract based work

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in Django related techincal tasks at fair prices. Reply or
send email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Thu, 1 Oct 2020, 11:19 am Mariusz Felisiak, 
wrote:

> Details are available on the Django project weblog:
>
> https://www.djangoproject.com/weblog/2020/oct/01/django-bugfix-release-312/
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/a174e54d-fc33-9e8f-f916-abe9786ff058%40gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneWFKm6oFvK5mHiabSFtV-x8CySw968_3qdFzY8CPB%3DJ6Q%40mail.gmail.com.


Re: Members rating system in DJango applications

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
We can help you in this and related techincal tasks at fair prices. Reply
or send email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate


On Mon, 21 Sep 2020, 7:58 am Ram,  wrote:

> Hi,
> We are planning to implement members rating system in our web application
> for Classifieds Ad transaction that each member does. Is there any an
> existing project or feature available by default in DJango FWK?
>
> I appreciate for suitable pointers and suggestions here.
>
> Best regards,
> ~Ram
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CA%2BOi5F0E3uTzk7_6S1kXq3gHpEHo1Dmpx_koFnzAQ6%3D%3DSmr0Cw%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneUysfJwgPdDYpiubj27x%2BNL14oqArG5XrHzs8xv0p11Lw%40mail.gmail.com.


Re: [API] Send csrf token and retrieve with javascript?

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
 We can help you in this and related techincal tasks at fair prices. Reply
or send email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate


On Thu, 1 Oct 2020, 5:10 am Alexandro Gonçalves Dos Santos, <
alexandrogon...@gmail.com> wrote:

> I am building a django api to be used in a front end of another server,
> how do I send the csrf token and how do I retrieve it in the front end with
> javascript?
>
> Currently my posts.py file looks like this:
> ```python
> from django.http import HttpResponse
> from django.views.decorators.csrf import ensure_csrf_cookie
>
> @ensure_csrf_cookie
> def index(request):
> return HttpResponse('ok')
> ```
>
> The header I get when accessing the route is:
> ```
> content-length: 2
> content-type: text/html; charset=utf-8
> date: Wed, 30 Sep 2020 22:37:40 GMT
> server: WSGIServer/0.2 CPython/3.7.3
> vary: Cookie
> x-content-type-options: nosniff
> x-frame-options: DENY
> ```
>
> Thanks for the help.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/93facb86-270a-432d-98cd-babce056f421n%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneXyC4pR5eyFbc7DNHx5SC76xMabHgOrBH15fSfBZm4Shg%40mail.gmail.com.


Re: How to consume DJango Rest Api with DJango?

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
We can help you in this and related techincal tasks at fair prices. Reply
or send email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate


On Thu, 1 Oct 2020, 5:10 am Stalin Vladimir Gomez Gutierrez, <
stanleyni...@gmail.com> wrote:

> I am trying to consume a django api with django itself. Should I use class
> generic
> views or normal views. Do you know what is the best approach?
>
> Right now, to list items I am using TemplateView
>
> class RegionListView(TemplateView):
> template_name = 'region/list.html'
>
> def get(self,request):
> r = requests.get('http://127.0.0.1:8081/regions')
> regions = r.json()
> region_list = {'regions':regions}
> return render(request, self.template_name, region_list)
>
> I need help to implement create and update views to use my api methods. Do
> you guys have any idea?
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/03abb212-8408-4fd7-8c5f-b78e9402bf38n%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneXkwt9kiyyJNq7VZsLh26uXo7r0fmjvfhyG3MC2YScd_w%40mail.gmail.com.


Re: Tips for debugging intermittent 502s with Daphne

2020-10-11 Thread Claudio Tubertini
Please add your nginx conf, this error may be connected to gthe setup of 
the server.

On Sunday, October 11, 2020 at 7:04:51 PM UTC+2 dvs...@gmail.com wrote:

> Hi do you hire contract based python/django freelancer?
>  We can help you in this and related tasks at fair prices. Reply or send 
> email to div...@pythonmate.com
> Best Regards, 
> Divyesh Khamele,
> Pythonmate
>
> On Thu, 8 Oct 2020, 3:50 am Keith Hackbarth,  
> wrote:
>
>> Hey all, 
>>
>> Was hoping to get some advice about how to debug intermittent 502 using 
>> Daphne
>>
>>- I observe connection error in the NGIX logs (where I"m using 
>>proxy_pass) *Connection refused) while connecting to upstream*
>>- I observe in NGIX logs that it correlates with spike in inbound 
>>requests.
>>- However, I'm seeing nothing in my Daphne logs to suggest that there 
>>is an error happening downstream.
>>
>> I've ruled out slowness and networking issues, so I'm assuming that 
>> Daphne is running out of connections. But have no idea where I could look 
>> to validate this assumption or what the next steps would be.
>>
>> Any advice?
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to django-users...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/django-users/89f42085-15f1-4578-a0c2-ee12534bc773n%40googlegroups.com
>>  
>> 
>> .
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/62028d4b-d1cd-4caa-b86a-035f75bfa1dfn%40googlegroups.com.


Re: Email or Messaging Module in DJango

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
We can help you in this and related techincal tasks at fair prices. Reply
or send email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Thu, 1 Oct 2020, 3:02 am Ram,  wrote:

> Hi,
>
> We are looking for Emailing and Messaging modules with the following
> features
>
> 1. Just like any other email interface, we need to have Inbox, Sent and
> Trash
> 2. Members of the site exchange messages on the Ads that they post
>
> I'm wondering if anyone used an opensource project or Django FWK has a
> module by default?
>
> I would appreciate if you can share suitable pointers.
>
> Thanks in advance,
> ~Ram
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CA%2BOi5F3dj2u%2B%3DWUj0Kar-Fm9d%3DVDGhYv%2BU8rOurNcUtC9nrPcg%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneWYwyJUHCCxvkvtODbgibbi62Lu4OgHwF3WjFgYXQC-LQ%40mail.gmail.com.


Re: can u help me

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
We can help you in this and related techincal tasks at fair prices. Reply
or send email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Tue, 29 Sep 2020, 7:12 pm FARISCHA MAKAY, <
farischa.ma...@student.president.ac.id> wrote:

> Note that only Django core commands are listed as settings are not
> properly configured (error: Requested setting INSTALLED_APPS, but settings
> are not configured. You must either define the environment variable
> DJANGO_SETTINGS_MODULE or call settings.configure() before accessing
> settings.).
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/ee8590d5-cd05-42d4-8d63-3bb136640245n%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneUageWqMPDV6SjTtxYHzNe8wq9iARrG7CZjQ4v%3DBAws3A%40mail.gmail.com.


Re: Looking to join a team in a Django Project to gain Experience

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
We can help you in this and related techincal tasks at fair prices. Reply
or send email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Tue, 29 Sep 2020, 7:12 pm Odedele Temitayo, 
wrote:

> I'm also interested
>
> On Tue, Sep 22, 2020, 1:40 AM ahmed.he...@gmail.com <
> ahmed.heshamel...@gmail.com> wrote:
>
>> Hi all,
>>
>> I am looking for a team of developers to join them in a project to
>> enhance my skills and add to my portfolio.  I am available part time.
>>
>> Thanks
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/6e15411d-b25d-40c8-a987-e65da9b3c297n%40googlegroups.com
>> 
>> .
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CALb%2BdgRYxXK9HDNTmA-mjAMxLw5%3DJWyacsFNixKK1Vgbk9dobQ%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneVfQLOmDBChfc5PKfekMqVk4gVRFJqnkNxdbojimH7w3A%40mail.gmail.com.


Re: Reg:Electron and sqlite3 packaging issue

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
We can help you in this and related techincal tasks at fair prices. Reply
or send email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Tue, 29 Sep 2020, 7:12 pm Divakar Upadhyay, <
upadhyaydivakar1...@gmail.com> wrote:

> Dear Friends,
> I am working on electron js and sqlite3. As my app is working fine in
> development mode but it is giving issue after packaging and running my
> exe.you can find issue in my attachment.If any one have any clue please let
> me know.
> I will be great thankful to you.
>
>
> Divakar Rakesh Upadhyay
> Software Engineer
> 9372129286
> skype:upadhyaydivakar1991
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAG5yzPAwjud-_Q-5L%2B-yHVFr%3Dm930ZKwhLH27BdAquSNqQLV9A%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneWUge2czw1BQ66F%2BwTzzHOvF%3DiYRpdkvSs51cnTWE49-A%40mail.gmail.com.


Re: Django Sitemap HTTP Error 500

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
We can help you in this and related techincal tasks at fair prices. Reply
or send email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate


On Tue, 29 Sep 2020, 1:57 pm dum dum,  wrote:

> I'm using django sitemap to generate my sitemap.
>
> In local it works normally, I can visit 127.0.0.1:8000/sitemap.xml and
> see the data. But in production, I got http error 500 (site matching query
> not exist) when trying to access "domain.com/sitemap.xml". I've been
> following solutions on the internet, and one of those is from this link
>
>
> https://dev.to/radualexandrub/how-to-add-sitemap-xml-to-your-django-blog-and-make-it-work-on-heroku-4o11
>
>
> https://stackoverflow.com/questions/53262018/django-sitemap-xml-throwing-server-error-500-in-production/53265609
>
> But I'm still getting the error. I followed these tutorials exactly, but
> the error still occured.
>
>
> https://jawaban.online/scope/outlink/6442/django-sitemap-tutorial-help-crawlers-understand-your-website-2018-youtube/
>
>
> https://jawaban.online/scope/outlink/17698/how-to-create-a-sitemap-in-django/
>
>
> https://jawaban.online/scope/outlink/2757/how-to-create-a-django-sitemap-sitemap-one-of-the-most-important-seo-by-erdi-mollahuseyinoglu-analytics-vidhya-medium/
>
> Please kindly help. Thanks
>
>
> https://jawaban.online/forum/discuss/110/how-do-i-fix-a-django-sitemap-http-error-500-on-heroku/
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CANV3w%3DZZUWHkAqVX9R%2BrkYDCSgghZKLy%3DDT5O_b4jatv6mi9fg%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneV_x-fSdw4r94sBbaWw5GBg5D61_tDOwTDHz_cGx8Punw%40mail.gmail.com.


Re: Virtual keyboard popup for running web app on touch-screen device

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
We can help you in this and related techincal tasks at fair prices. Reply
or send email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Tue, 29 Sep 2020, 12:00 am tristant,  wrote:

> Hi,
>
> What package available in Django that I can use to create a popup
> on-screen keyboard for the user to type on a touch-screen device? I know
> Tkinter has this GUI capability. But I would like to stick with a web-based
> app.
>
> If you have built something like that and could share the end result, that
> would be great.
>
> Thanks,
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/1135c1b8-db87-44ac-8528-f1aad5d32b99n%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneXjZwhLL2r4_qK%3DBhyZEdvRyo6MGL8C1M4%3D6%3DLYW%2B1SZQ%40mail.gmail.com.


Re: Virtual keyboard popup for running web app on touch-screen device

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
We can help you in this and related techincal tasks at fair prices. Reply
or send email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate


On Tue, 29 Sep 2020, 12:00 am tristant,  wrote:

> Hi,
>
> What package available in Django that I can use to create a popup
> on-screen keyboard for the user to type on a touch-screen device? I know
> Tkinter has this GUI capability. But I would like to stick with a web-based
> app.
>
> If you have built something like that and could share the end result, that
> would be great.
>
> Thanks,
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/1135c1b8-db87-44ac-8528-f1aad5d32b99n%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneWptyNHtWQXJu_DEYt5sUuuhePn9iid2FuajC%2BpTES%3DUw%40mail.gmail.com.


Re: Django Mysql Bulk_Create Ids

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
We can help you in this and related techincal tasks at fair prices. Reply
or send email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Mon, 28 Sep 2020, 4:44 am Rohan Nahata,  wrote:

> How can we make this happen?
> What steps would be needed so that bulk_create ends up returning the ids
> of the items that just got created? I don't want to be machine gunning my
> db with save statements to retrieve ids.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/05b8f31e-f4e7-4f3f-b94a-2dea27568102n%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneUgv0B3q2NfeAbFtP1gWWF6KKd7-XigBjvevW2m_A2NgA%40mail.gmail.com.


Re: Limit the choices for a ForeignKey

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
We can help you in this and related techincal tasks at fair prices. Reply
or send email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate


On Sun, 27 Sep 2020, 10:09 pm Marco Paradisi,  wrote:

> Hi Everyone!
>
> I need to filter the choices for a foreign key.
>
> My Model has an attribute SEX that could be M or F, and two Foreign keys (
> FATHER and MOTHER ), I want both filtered for sex.
>
> How can I achieve it?
>
> Thanks in advance
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAFCTdWp0xJE_J-r%3DmHbHzVmeAsGvotFc1%3DyQBGuyEzjfiiVxTA%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneV4zRCirCcXOV5bV7fCyb7HmB7kHDK8Lumu2hKqMN10YA%40mail.gmail.com.


Re: 127.0.0.1:8000 infinite loading, but localhost:8000 can be access

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
We can help you in this and related techincal tasks at fair prices. Reply
or send email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate

On Sat, 26 Sep 2020, 11:33 pm dum dum,  wrote:

> I don't know why this happened.
> Please advise, Thanks.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CANV3w%3Db1dXqRvfb6pNfcmTNUVktd4J7QUAOOJOeo%3D4DOM%2BA9XQ%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneWEsn-SJotVoM5Lf4USH%2BQmqO7pn%2BU0UWJLSyMaBxr33A%40mail.gmail.com.


Re: domain/sitemap.xml HTTP Error 500, site matching query does not exist

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer?
We can help you in this and related techincal tasks at fair prices. Reply
or send email to divy...@pythonmate.com
Best Regards,
Divyesh Khamele,
Pythonmate


On Sat, 26 Sep 2020, 11:50 pm Kasper Laudrup,  wrote:

> Hi Dum Dum,
>
> On 26/09/2020 18.56, dum dum wrote:
> > I followed the solution on the internet
> >
> https://www.codeproject.com/Questions/5257129/Why-does-my-sitemap-xml-page-return-django-issue-r
> >
> > image.png
> > by commented django.contrib.sites. But still got the same error.
> > Please advise. Thanks
> >
>
> What did you find in your log files?
>
> Kind regards,
>
> Kasper Laudrup
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/ada20960-af21-f42b-700f-40d6c2abccb7%40stacktrace.dk
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH9mneXX7KTgV73riW-KxCadhzF8DyYi0-rVxRJa4vJB6af1-w%40mail.gmail.com.


Re: How to get logged in user location and save it in database

2020-10-11 Thread Ram
Thank you all for your valuable pointers.

Best Regards,
~Ram

On Sun, Oct 11, 2020 at 11:23 AM Dvs Khamele  wrote:

> Hi do you hire contract based python/django freelancer?
>  We can help you in this and related techincal tasks at fair prices. Reply
> or send email to divy...@pythonmate.com
> Best Regards,
> Divyesh Khamele,
> Pythonmate
>
>
> On Thu, 1 Oct 2020, 9:59 am Ram,  wrote:
>
>> Hi All,
>>
>> I'm looking for a way to capture location of logged in users in our Web
>> App and save that location into our database.
>>
>> Basically if we could capture this location, we would like to use it
>> around members account features.
>>
>> Please let me know if you have suitable pointers for this.
>>
>> Thanks in advance,
>> ~Ram
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CA%2BOi5F1T1X_Q-GGSqKp4f-fRhY4qfu8Y12-XcNUGcEmUSGQ9AA%40mail.gmail.com
>> 
>> .
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CA%2BOi5F397w4WD3OTPt8ztTP%2BdL%2BiXLYPdPUU9UKc%3Dnvp3aEMXg%40mail.gmail.com.


Re: Need help with inlineformset

2020-10-11 Thread Marco Paradisi
up

Il giorno domenica 11 ottobre 2020 alle 17:37:15 UTC+2 Marco Paradisi ha 
scritto:

> Hi everyone,
>
> I have the following instruction:
>
> forms.models.inlineformset_factory(Covata, Bird, fields=('rna_ucc', 
> 'sesso', 'nascita', 'anella', 'razza', 'mutazione', 'portatore',), 
> can_delete=True, extra=1)
>
> I want to initialize two fields of the model "Bird" to values taken from 
> the form of the model "Covata".
>
> anyone has any hint?
>
> Thanks in advance
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/ebcd6c75-9529-4d3d-b479-ad854ee0792cn%40googlegroups.com.


Re: domain/sitemap.xml HTTP Error 500, site matching query does not exist

2020-10-11 Thread dum dum
Hi guys, I solved this problems about week ago.
Turns out that there were conflict of data and codes.
Django sitemap generate something that was not exist.
Such the slug.

Thanks for suggestions and help before.

On Mon, Oct 12, 2020 at 12:41 AM Dvs Khamele  wrote:

> Hi do you hire contract based python/django freelancer?
> We can help you in this and related techincal tasks at fair prices. Reply
> or send email to divy...@pythonmate.com
> Best Regards,
> Divyesh Khamele,
> Pythonmate
>
>
> On Sat, 26 Sep 2020, 11:50 pm Kasper Laudrup, 
> wrote:
>
>> Hi Dum Dum,
>>
>> On 26/09/2020 18.56, dum dum wrote:
>> > I followed the solution on the internet
>> >
>> https://www.codeproject.com/Questions/5257129/Why-does-my-sitemap-xml-page-return-django-issue-r
>> >
>> > image.png
>> > by commented django.contrib.sites. But still got the same error.
>> > Please advise. Thanks
>> >
>>
>> What did you find in your log files?
>>
>> Kind regards,
>>
>> Kasper Laudrup
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/ada20960-af21-f42b-700f-40d6c2abccb7%40stacktrace.dk
>> .
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAH9mneXX7KTgV73riW-KxCadhzF8DyYi0-rVxRJa4vJB6af1-w%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CANV3w%3DaXOdGEX2GdddLzewW4yD15XfvcFxD7MKjdWH6JDfZPxQ%40mail.gmail.com.


Request for admins

2020-10-11 Thread o1bigtenor
Greetings

The list volume seems to have attracted those that purport to offer
help or services.

Is it possible that the volume of this has reached a point where there
is a separate list for just that.
That would be a separate subscription to a list where if one wanted to
either use or offer services one was free to do so. The second part of
that would be that if one overtly did the same on the 'users' list one
would be either punted or at the very least put on controlled listing.

This request is stemming from the 40 or 50 emails polluted by a listee
who seems to think that attaching his business card or better its
written equivalent to every thread is going to get him business. Mine
- - - - never - - - - I don't do business that way.

Hoping that this request isn't too far off topic!

Regards

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAPpdf59qjGznmqJTbpHe6c8t0_GoTn6O8bs6agggPA6Zbx8EMQ%40mail.gmail.com.


Re: Request for admins

2020-10-11 Thread Agnese Camellini
I full aree with you. This is spamming!

Il Dom 11 Ott 2020, 22:14 o1bigtenor  ha scritto:

> Greetings
>
> The list volume seems to have attracted those that purport to offer
> help or services.
>
> Is it possible that the volume of this has reached a point where there
> is a separate list for just that.
> That would be a separate subscription to a list where if one wanted to
> either use or offer services one was free to do so. The second part of
> that would be that if one overtly did the same on the 'users' list one
> would be either punted or at the very least put on controlled listing.
>
> This request is stemming from the 40 or 50 emails polluted by a listee
> who seems to think that attaching his business card or better its
> written equivalent to every thread is going to get him business. Mine
> - - - - never - - - - I don't do business that way.
>
> Hoping that this request isn't too far off topic!
>
> Regards
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAPpdf59qjGznmqJTbpHe6c8t0_GoTn6O8bs6agggPA6Zbx8EMQ%40mail.gmail.com
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CACXuh-RnZj-ejb5hzpMrf9%3DRUte%3Dks15pUHXZJ3DxrzngtarnQ%40mail.gmail.com.


Re: How to Save or Print the array field in Django using CreateView?

2020-10-11 Thread Venkata Rami Reddy Kasu
Don't spam the community. Advertise yourself outside the group.
..
Thank you


*K.V.Rami ReddyPHP , Node.Js & Python Web Developer*



On Sun, 11 Oct 2020 at 22:41, Dvs Khamele  wrote:

> Hi do you hire contract based python/django freelancer?
>  We can help you in this and related tasks at fair prices. Reply or send
> email to divy...@pythonmate.com
> Best Regards,
> Divyesh Khamele,
> Pythonmate
>
> On Sun, 4 Oct 2020, 11:39 pm Kasper Laudrup, 
> wrote:
>
>> Hi Janak,
>>
>> On 04/10/2020 08.59, Janak Parmar wrote:
>> >
>> > Please help me here. I want to convert this array field values into
>> > string with comma separated and then save in table.
>> >
>>
>> Not sure what "this array" is in this context, but couldn't you just use
>> the standard Python join method?
>>
>> https://www.tutorialspoint.com/python3/string_join.htm
>>
>> I don't see any reason to use any Django specific functionality.
>>
>> Kind regards,
>>
>> Kasper Laudrup
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/032cea7e-b7bf-5fb0-0474-15e002bf68b9%40stacktrace.dk
>> .
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAH9mneV3nuHmPYSi-2je4eOEsF-UOEZcSY%3DJbEAUr%3D9r8kMiFw%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAP_Yz7s9cve%2Bxx7RbE3rW5VpA_G9Q8XrDGiBk_6Pcb4xk3%2BVPg%40mail.gmail.com.


Re: Request for admins

2020-10-11 Thread o1bigtenor
On Sun, Oct 11, 2020 at 3:20 PM Agnese Camellini
 wrote:
>
> I full aree with you. This is spamming!
>

I agree and that address is listed as spam for my mail system.
As I thought about it there are legitimate offers and requests for service so
didn't want to preclude those - - - that is what prompted the idea of
a separate
list although its going to make work for an admin - - -  :-( !!

Regards

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAPpdf59KA27xORFB1SktUTN0pCA3oFWWqHd1j1mbGE%2Bij9wKnw%40mail.gmail.com.


Deploy you django project

2020-10-11 Thread degnon...@gmail.com

HI guys I hope you are all doing well, for those of you looking for a way 
to deploy your django projects i wrote a blog post on how to achieve that 
on a personal blog i started recently (today in fact).Feel free to take a 
look and give me your feedback. You can check the article here:  
https://www.tobidegnon.com/blog/post-detail/host-your-django-project-on-digital-ocean-with-dok/

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/37c9e9e0-4d6a-4366-94d7-1de18d214949n%40googlegroups.com.