Re: vs {{ form }}

2017-05-19 Thread guettli
Am Freitag, 19. Mai 2017 10:46:02 UTC+2 schrieb James Schneider: > > > > On Thu, May 18, 2017 at 8:14 AM, guettli > wrote: > >> >> >> >> Am Mittwoch, 17. Mai 2017 23:14:04 UTC+2 schrieb James Schneider: >>> >>> >>> >>> On May 17, 2017 6:31 AM, "guettli"

Re: vs {{ form }}

2017-05-19 Thread James Schneider
On Thu, May 18, 2017 at 8:14 AM, guettli wrote: > > > > Am Mittwoch, 17. Mai 2017 23:14:04 UTC+2 schrieb James Schneider: >> >> >> >> On May 17, 2017 6:31 AM, "guettli" wrote: >> >> Hi Russell Keith-Magee, >> >> which version do

Re: vs {{ form }}

2017-05-18 Thread guettli
Am Mittwoch, 17. Mai 2017 23:14:04 UTC+2 schrieb James Schneider: > > > > On May 17, 2017 6:31 AM, "guettli" > wrote: > > Hi Russell Keith-Magee, > > which version do you use? With or without table? > >{{ form }} vs {{ form }} > > > Both of these are

Re: vs {{ form }}

2017-05-17 Thread James Schneider
On May 17, 2017 6:31 AM, "guettli" wrote: Hi Russell Keith-Magee, which version do you use? With or without table? {{ form }} vs {{ form }} Both of these are incorrect. You need to wrap {{ form }} in a HTML tag. If you want it in a table, use {{

Re: vs {{ form }}

2017-05-17 Thread Melvyn Sopacua
On Tuesday 16 May 2017 08:51:49 knbk wrote: > On Tuesday, May 16, 2017 at 9:51:07 AM UTC+2, guettli wrote: > > This is a basic fact, and AFAIK this basic question is not solved > > yet. > > > > {{ form }} * vs * {{ form }} > > That question is actually answered by the documentation >

Re: vs {{ form }}

2017-05-17 Thread Melvyn Sopacua
On Tuesday 16 May 2017 12:05:59 Jani Tiainen wrote: > "rightway" to do things is to keep rendering (html) in the place where > it belongs to - in templates. That's the main functionality of > templates. First, there's no single place to render HTML. Template rendering deals very poorly with

Re: vs {{ form }}

2017-05-17 Thread Melvyn Sopacua
On Tuesday 16 May 2017 00:51:07 guettli wrote: > Am Mittwoch, 10. Mai 2017 10:56:56 UTC+2 schrieb Melvyn Sopacua: > > On Tuesday 09 May 2017 14:08:44 Jani Tiainen wrote: > > > And to use bootstrap you don't need any special package, you can > > > do it > > > > > > without it just fine. > > > >

Re: vs {{ form }}

2017-05-17 Thread guettli
Hi Russell Keith-Magee, which version do you use? With or without table? {{ form }} vs {{ form }} Regards, Thomas Am Dienstag, 16. Mai 2017 17:52:19 UTC+2 schrieb Russell Keith-Magee: > > > On 16 May 2017, 12:51 AM -0700, guettli >, wrote: > > > I know

Re: vs {{ form }}

2017-05-16 Thread knbk
On Tuesday, May 16, 2017 at 9:51:07 AM UTC+2, guettli wrote: > > > This is a basic fact, and AFAIK this basic question is not solved yet. > > {{ form }} * vs * {{ form }} > That question is actually answered by the documentation

Re: vs {{ form }}

2017-05-16 Thread Russell Keith-Magee
On 16 May 2017, 12:51 AM -0700, guettli , wrote: > > I know that real super heroes prefer the hard way. I don't like the hard way. > Call me wuss, pussy, weenie if you want to. That kind of language is completely unnecessary. I don’t care how frustrated you

Re: vs {{ form }}

2017-05-16 Thread Jani Tiainen
Hi, "rightway" to do things is to keep rendering (html) in the place where it belongs to - in templates. That's the main functionality of templates. Unfortunately traditionally Django forms have been doing things wrong and pushed HTML rendering to Python code - bascially to change your HTML

Re: vs {{ form }}

2017-05-16 Thread guettli
Am Mittwoch, 10. Mai 2017 10:56:56 UTC+2 schrieb Melvyn Sopacua: > > On Tuesday 09 May 2017 14:08:44 Jani Tiainen wrote: > > > > > And to use bootstrap you don't need any special package, you can do it > > > without it just fine. > > > > To render a webpage, you don't need Django you can do

Re: vs {{ form }}

2017-05-10 Thread Melvyn Sopacua
On Tuesday 09 May 2017 14:08:44 Jani Tiainen wrote: > And to use bootstrap you don't need any special package, you can do it > without it just fine. To render a webpage, you don't need Django you can do just fine typing HTML. What's your point really? -- Melvyn Sopacua -- You received this

Re: vs {{ form }}

2017-05-09 Thread Jani Tiainen
And, if your really want to, you can do all that manually without using django rendering facilities - since nothing forces you to do that. It's just few convenience tools to create something to start with. That way you have full control over your forms and how they look like and where are all

Re: vs {{ form }}

2017-05-09 Thread Melvyn Sopacua
On Friday 05 May 2017 06:17:12 guettli wrote: > Am Donnerstag, 4. Mai 2017 16:03:25 UTC+2 schrieb Todor Velichkov: > > Take a look at: > > 1) Form rendering options > > > -options> 2) Outputting forms as HTML > >