#17193, Mass Templated Emails and support for mass EmailMessage (s)

2021-03-21 Thread Muskan Vaswan
I came across this issue #17193 which is quite old, that I'd like clarification/discussion on. To summarize the discussion that took place there as well as from an older discussion

Let's simplify coding with html

2021-03-21 Thread manasdeep borole
Hi Everyone, I know coding could get tough sometimes(experienced it). But thanks to amazing people like you and per built framework like Django. At least not everyone has to know everything now. The Open Source support is amazing as well. Thanks a lot. Last time while working with html I was annoy

Re: Help with implementing calculated fields (#28822)

2021-03-21 Thread Tobias Bengfort
Hi Matt, sorry for the late reply. This is exactly what I was looking for! However, if I understand correctly this is more a proof of concept and not ready for production use. There still seem to be some subtlties that need to be fixed: - related queries with shared_property - filtered aggre

Re: Let's simplify coding with html

2021-03-21 Thread Aymeric Augustin
Hello, There are several projects providing alternate syntax for generating HTML, along the lines of your suggestion, and other projects for integrating these with Django. Here's one such project: https://github.com/nyaruka/django-hamlpy . I believe we'

Re: Proposal to add attribute 'step' to FloatField and DecimalField

2021-03-21 Thread Kapil Bansal
Hi everyone, I am working on this and I have a question. How to write validation check for this? Due to python floating point issues, I am not able to validate whether field value is of given step_size or not - Kapil On Wednesday, March 17, 2021 at 9:34:59 PM UTC+5:30 jacob...@gmail.com wrote:

Re: Proposal to add attribute 'step' to FloatField and DecimalField

2021-03-21 Thread Jacob Rief
Say, you have a value and step, both are floats, then if value / step is can be represented integer, the validation is fulfilled. Otherwise if the result has to be rounded to become an integer, a ValidationError shall be raised. Be aware of rounding errors. On Sunday, March 21, 2021 at 9:53:43 P

Re: Let's simplify coding with html

2021-03-21 Thread manasdeep borole
Thanks But it seems there is no support for bootstrap (at least not directly) Or may be I am missing something Please feel free to point out... On Mon, Mar 22, 2021 at 1:51 AM Aymeric Augustin < aymeric.augus...@polytechnique.org> wrote: > Hello, > > There are several projects providing alter