0

I'm not sure about how to write it correctly, but this is the inline notation I used, it seems to be correct from checking, but it always says it's greater.

{f:if(condition: '{timestamp} > {f:format.date(date:{timestampsinloop}, format:"U")}', then: 'Too late')}

user828591
  • 1,212
  • 2
  • 17
  • 32

1 Answers1

2

I went back to half inline and half block notation:

<f:if condition="{timestamp} > {f:format.date(date: '{timestampsinloop}', format: 'U')}">Too late</f:if>

user828591
  • 1,212
  • 2
  • 17
  • 32
  • Maybe this has been removed in later Fluid versions. If I use it like that, I get an error - "A boolean expression has more than tree parts." – Mateng Dec 02 '13 at 17:14