Re: Styling in Django

2019-12-09 Thread Tafadzwa Marshal
hello. Can you send that Materialize tutorial On Wed, Dec 4, 2019 at 3:27 AM Akshay Deep wrote: > https://vacancyjobalert.com/”>VacancyJobAlert.Com > > On Tuesday, December 3, 2019 at 7:16:34 PM UTC+5:30, marshalx4 wrote: >> >> How can I use Materialize CSS with Django? Seems like bootstrap is

Re: Styling in Django

2019-12-04 Thread Akshay Deep
https://vacancyjobalert.com/”>VacancyJobAlert.Com On Tuesday, December 3, 2019 at 7:16:34 PM UTC+5:30, marshalx4 wrote: > > How can I use Materialize CSS with Django? Seems like bootstrap is the > only framework that works with little to no hassle at all. > -- You received this message because

Re: Styling in Django

2019-12-03 Thread Tafadzwa Marshal
thanks On Tue, Dec 3, 2019 at 6:40 AM Thiago Luiz Parolin wrote: > My last project materializecss uses materialize with great success and to > stylizing forms i am using django-materializecss-form > > Em ter., 3 de dez. de 2019 às 10:52, Alan Gómez > escreveu: > >> You can work with

Re: Styling in Django

2019-12-03 Thread Thiago Luiz Parolin
My last project materializecss uses materialize with great success and to stylizing forms i am using django-materializecss-form Em ter., 3 de dez. de 2019 às 10:52, Alan Gómez escreveu: > You can work with materializecss In django. You must configure the static > path and put the materializecss

Styling in Django

2019-12-03 Thread Alan Gómez
You can work with materializecss In django. You must configure the static path and put the materializecss files in these path. At night, I can send you an example. Regards. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from

Styling in Django

2019-12-03 Thread marshalx4
How can I use Materialize CSS with Django? Seems like bootstrap is the only framework that works with little to no hassle at all. -- 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,

Re: styling with django templates

2010-06-08 Thread Venkatraman S
On Wed, Jun 9, 2010 at 3:57 AM, Nick wrote: > Boy, that just flew right past me. Ridiculous. Thanks everyone. > > On Jun 8, 1:06 pm, Dejan Noveski wrote: > > http://docs.djangoproject.com/en/dev/ref/templates/builtins/#for > > > > scroll a bit down to see

Re: styling with django templates

2010-06-08 Thread Nick
Boy, that just flew right past me. Ridiculous. Thanks everyone. On Jun 8, 1:06 pm, Dejan Noveski wrote: > http://docs.djangoproject.com/en/dev/ref/templates/builtins/#for > > scroll a bit down to see the forloop object and its properties. > > > > On Tue, Jun 8, 2010 at 8:05

styling with django templates

2010-06-08 Thread Nick
I am looking for a way to identify the first item returned in a loop and display it differently than the others: basically it would go like: {% for item in items %} {% if is_first_item %} This is what will show {% else %} this is what will show {% endfor %} Am I overlooking