[Zope] A very newbie question

2000-08-13 Thread Indra Gunawan
I need to know the value of (sequence-index mod 3)=0 in something like dtml-if "sequence-index mod 3)=0" how do I use the mod function correctly? since the divmod function is actualy returning 2 pair of value. Thanks guys. -IGUN- ICQ:1474584 ___ Zope

Re: [Zope] A very newbie question

2000-08-13 Thread Terry Kerr
dtml-if "_['sequence-index']%3 ==0" Indra Gunawan wrote: I need to know the value of (sequence-index mod 3)=0 in something like dtml-if "sequence-index mod 3)=0" how do I use the mod function correctly? since the divmod function is actualy returning 2 pair of value. Thanks guys.

Re: [Zope] A very newbie question

2000-08-13 Thread Phil Harris
Indra, Try: dtml-if "_.divmod(_.int(_['sequence-item']),3)[0]==0" hth Phil [EMAIL PROTECTED] - Original Message - From: "Indra Gunawan" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, August 14, 2000 2:38 AM Subject: [Zope] A very newbie question I ne

Re: [Zope] A very newbie question

2000-08-13 Thread Phil Harris
oops, Should hae been: dtml-if "_.divmod(_.int(_['sequence-item']),3)[1]==0" hth Phil [EMAIL PROTECTED] - Original Message - From: "Indra Gunawan" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, August 14, 2000 2:38 AM Subject: [Zope] A very newbie questi