Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

Archive /

Our old forums are still available as a read-only archive.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo

How to do a <= check in template


Go to End


2 Posts   4584 Views

Avatar
Sec

Community Member, 13 Posts

16 December 2008 at 2:37am

Hello.

I would like to do a test like this:

<% if $Pos <= 4 %>
...

Is this possible in the ss template?

Avatar
jam13

121 Posts

16 December 2008 at 3:29am

If <= works (which I'm not sure of) then it would be:

<% if Pos <= 4 %>

i.e. without the $

If not, and $Pos is an integer, can't you do < 5?