Re: How to get datetime from server

2018-09-06 Thread ireoluwa fakeye
It's better you import from django.util On Thu, 6 Sep 2018, 17:08 Thiago Luiz Parolin, wrote: > Hi, > I am building a django system that prevent user from upload a file after a > date. > This date is setting using: > today = datetime.date.today() > > but if the user alters his computer date, he

How to get datetime from server

2018-09-06 Thread Thiago Luiz Parolin
Hi, I am building a django system that prevent user from upload a file after a date. This date is setting using: today = datetime.date.today() but if the user alters his computer date, he can upload file normally after the end date. how can i assing to 'today', the date from server and not client

Re: How to get datetime from server

2018-09-06 Thread Thiago Luiz Parolin
Sorry, my mistake! In manage.py runserver, the server is my computer and the time displayed is my computer time. Putting the code in production server all work as expected! Em qui, 6 de set de 2018 às 10:29, Thiago Luiz Parolin < thiago.paro...@unesp.br> escreveu: > Hi, > I am building a django