Re: django template rendering performance

2018-07-09 Thread Andrew Paulsen
No, Django renders the templates. Masoud, if you suspect there are negative difference between 2.7 and 3.5, please try to make a minimal app showing off the problem so the devs can fix it. On 2018-07-10 09:11, mottaz hejaze wrote: > i dont think so . rendering templates , though rendering templa

Re: django template rendering performance

2018-07-09 Thread mottaz hejaze
i dont think so . rendering templates , though rendering templates us a matter of the web server then users browsers On Tue, 10 Jul 2018, 00:56 Masoud Sadri, wrote: > Hi, > when rendering django(v 1.11) templates, is there any performance > difference between python 2.7 and 3.5? > > Thanks. > >

django template rendering performance

2018-07-09 Thread Masoud Sadri
Hi, when rendering django(v 1.11) templates, is there any performance difference between python 2.7 and 3.5? Thanks. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an ema

Re: django template rendering

2008-06-25 Thread Matthias Kestenholz
On Tue, 2008-06-24 at 22:10 -0700, Djangofan wrote: > When rendering a django template on an HTML page, I can use: > > Field Name: "myFieldName" > Value: {{ row.myFieldName }} > > and it works just fine. However, I can't find a way to make it work > with a dynamic variable for the field name:

Re: django template rendering

2008-06-24 Thread Alessandro Ronchi
2008/6/25, Djangofan <[EMAIL PROTECTED]>: > > When rendering a django template on an HTML page, I can use: > > Field Name: "myFieldName" > Value: {{ row.myFieldName }} > > and it works just fine. However, I can't find a way to make it work > with a dynamic variable for the field name: > > F

django template rendering

2008-06-24 Thread Djangofan
When rendering a django template on an HTML page, I can use: Field Name: "myFieldName" Value: {{ row.myFieldName }} and it works just fine. However, I can't find a way to make it work with a dynamic variable for the field name: Field Name: "{{ x }}" <== where x='myFieldName' Value: {{ row.x