Re: django project avoid reload page where work algorithm

2017-10-08 Thread Richard Damon
On 10/8/17 4:46 PM, Xristos Xristoou wrote: Τη Κυριακή, 8 Οκτωβρίου 2017 - 10:48:38 μ.μ. UTC+3, ο χρήστης Richard Damon έγραψε: On 10/8/17 11:58 AM, Xristos Xristoou wrote: Τη Κυριακή, 8 Οκτωβρίου 2017 - 6:35:28 μ.μ. UTC+3, ο χρήστης MRAB έγραψε: On 2017-10-08 15:27, Xristos Xristoou wrote:

Re: django project avoid reload page where work algorithm

2017-10-08 Thread Michael Torrie
On 10/08/2017 02:46 PM, Xristos Xristoou wrote: > Τη Κυριακή, 8 Οκτωβρίου 2017 - 10:48:38 μ.μ. UTC+3, ο χρήστης Richard Damon > έγραψε: >> It sounds like the fundamental problem is that you are doing the >> calculation in the web page handler. This means that the browser will be >> stuck in the

Re: django project avoid reload page where work algorithm

2017-10-08 Thread Xristos Xristoou
Τη Κυριακή, 8 Οκτωβρίου 2017 - 10:48:38 μ.μ. UTC+3, ο χρήστης Richard Damon έγραψε: > On 10/8/17 11:58 AM, Xristos Xristoou wrote: > > Τη Κυριακή, 8 Οκτωβρίου 2017 - 6:35:28 μ.μ. UTC+3, ο χρήστης MRAB έγραψε: > >> On 2017-10-08 15:27, Xristos Xristoou wrote: > > > >> Do you mean "long reload"? >

Re: django project avoid reload page where work algorithm

2017-10-08 Thread Richard Damon
On 10/8/17 11:58 AM, Xristos Xristoou wrote: Τη Κυριακή, 8 Οκτωβρίου 2017 - 6:35:28 μ.μ. UTC+3, ο χρήστης MRAB έγραψε: On 2017-10-08 15:27, Xristos Xristoou wrote: Do you mean "long reload"? user can put some numbers in my html template and i take that numbers and i sue it in specific math

Re: django project avoid reload page where work algorithm

2017-10-08 Thread Xristos Xristoou
Τη Κυριακή, 8 Οκτωβρίου 2017 - 6:35:28 μ.μ. UTC+3, ο χρήστης MRAB έγραψε: > On 2017-10-08 15:27, Xristos Xristoou wrote: > Do you mean "long reload"? user can put some numbers in my html template and i take that numbers and i sue it in specific mathematical algorithm that algorithm to create res

Re: django project avoid reload page where work algorithm

2017-10-08 Thread MRAB
On 2017-10-08 15:27, Xristos Xristoou wrote: You can use the smtplib module to send an email. ok but how to avoid pong reload on page ?can you help me ? Do you mean "long reload"? If you have the user's email address from when they registered, you could have the user log in to get the

Re: django project avoid reload page where work algorithm

2017-10-08 Thread Xristos Xristoou
> You can use the smtplib module to send an email. ok but how to avoid pong reload on page ?can you help me ? -- https://mail.python.org/mailman/listinfo/python-list

Re: django project avoid reload page where work algorithm

2017-10-08 Thread MRAB
On 2017-10-08 11:27, Xristos Xristoou wrote: You mentioned email, so why not just ask for an email address to which you will send the result? i have user email from register i need to do all automate,how to use celery for this ? You can use the smtplib module to send an email. -- https://m

Re: django project avoid reload page where work algorithm

2017-10-08 Thread Xristos Xristoou
> You mentioned email, so why not just ask for an email address to which > you will send the result? i have user email from register i need to do all automate,how to use celery for this ? -- https://mail.python.org/mailman/listinfo/python-list

Re: django project avoid reload page where work algorithm

2017-10-07 Thread MRAB
On 2017-10-08 01:40, Xristos Xristoou wrote: I have a website where the user can be put three numbers on my html template and get some results from my personal mathematical algorithm. the result save at user personal table on my database and can see in specific tab in my website. my problem is

django project avoid reload page where work algorithm

2017-10-07 Thread Xristos Xristoou
I have a website where the user can be put three numbers on my html template and get some results from my personal mathematical algorithm. the result save at user personal table on my database and can see in specific tab in my website. my problem is where the algorithm to calculate result maybe t