>

This evaluates to true if the left side compares larger than the right side. This behavior works best with integers or floats.

Template Example

<h3>Well Rated Items</h3>
<ul>
{% for item in this.children.filter(F.stars > 3) %}
  <li>{{ item.name }}: {{ item.stars }} stars</li>
{% endfor %}
</ul>

Comments