Enable Cron task, interval task not work Celery Beat

2019-03-17 Thread thanh . nguyenba0611
My Django Web has interval task type and cron task type. When i disable cron task type, interval task type work. But when i enable cron task type, cron task type work and interval task not work. I run celery beat and celery worker with supervisor. And i'm sure service beat running Version

Re: In my django web app i wannt show time in user timezone

2018-12-07 Thread thanh . nguyenba0611
Hello, I think you can use "request.META" django. (request.META['TZ']). It is timezone user submit request. :D On Saturday, December 8, 2018 at 8:39:29 AM UTC+7, Deniz Bazan wrote: > > Hello everybody, > I have a django web app, in my app i want to show in the page where the > time

Re: Django URL problem

2018-12-07 Thread thanh . nguyenba0611
It can be like {% url 'email' %} (incorrect) => {% url 'email' %} (correct) :D On Saturday, December 8, 2018 at 2:10:13 AM UTC+7, Kacsándi, Zsolt wrote: > > Hi, > > I am new in Django and I have a problem. > I want to build an URL structure like this: > > https://example.com/1/email >

Re: Django URL problem

2018-12-07 Thread thanh . nguyenba0611
Hello, I think you are missing ('email/') in template. On Saturday, December 8, 2018 at 2:10:13 AM UTC+7, Kacsándi, Zsolt wrote: > > Hi, > > I am new in Django and I have a problem. > I want to build an URL structure like this: > > https://example.com/1/email > https://example.com/1/email/2 >