The last feature we will add to our template is a new tab that applies a filter. Lets create a new tab that contains all the short films, meaning one hour or less.
We start by adding a <parent> tag to our film table. This tag can contain any name that is not the name of another table, but it needs to be the same across all tables that we want grouped by tabs. After this we duplicate the whole table, but change the <title> of the second table to make them differentiable.
Now we can see a new tab appear, which will also list every film.
Now we need to add a <filter> tag to our new table. This tag uses SolR queries, and we can use a Range Search to filter by the films which have a length less than or equal to 60. The syntax for this is length: [* TO 60]. Add this within a <filter> tag in the new table.
Our new table now only contains films that are 60 minutes or less!