Fellow Reports - February 2019

2019-02-09 Thread Tim Graham
Week ending February 9, 2019 Triaged --- https://code.djangoproject.com/ticket/30167 - Allow Child Templates To Inherit Loaded Tags From Parent (duplicate) https://code.djangoproject.com/ticket/30168 - Change date, time and datetime inputs from text type (duplicate) Authored

Re: Show applied datetime in showmigrations

2019-02-09 Thread Tim Schilling
I've worked up a solution for feedback. https://github.com/tim-schilling/django/pull/1 On Sunday, February 3, 2019 at 11:30:34 AM UTC-6, Tim Schilling wrote: > > My idea is to add the applied datetime value to the showmigrations command. > > I've run into the case where I'm working on a branch

Re: Extend FAQ with "How do I get Django and my JS framework to work together?"

2019-02-09 Thread Dmitriy Sintsov
Very nice tuturials! Although there is web components standard gradually being adapted by major browsers, which should bring custom tags / components not having to use the third party Javascript libraries like Vue or React. So, while in Python world the leadership of Django is quite stable and

Re: Extend FAQ with "How do I get Django and my JS framework to work together?"

2019-02-09 Thread Aymeric Augustin
Hello, I wrote a three-part essay on this question last year: 1. https://fractalideas.com/blog/making-react-and-django-play-well-together/ 2. https://fractalideas.com/blog/making-react-and-django-play-well-together-hybrid-app-model/ 3.

Re: django logging - `ServerFormatter.uses_server_time()` forces users to use `{` logging style

2019-02-09 Thread Łukasz Skarżyński
Thanks for response. Should I prepare some PR now? Generally I think about implementing `.uses_server_time()` using `_style.asctime_search` attribute: `self._fmt.find(self._style.asctime_search.replace('asctime', 'server_time')) >= 0` this call of `str.replace()` can be done even only once