When a user arrives at the index pages, presumably they will want to narrow down what they are looking for. Since we are using tagging, the easiest way would be to allow them to select from the defined tags and filter the list down accordingly.
This will require either adding in RoutablePageMixin or overriding the serve method to enable subsetting.
From looking at the wagtail docs on RoutablePageMixin, it looks like it makes more sense to go that route. Especially since it would enable me to define the archive view as well.
When a user arrives at the index pages, presumably they will want to narrow down what they are looking for. Since we are using tagging, the easiest way would be to allow them to select from the defined tags and filter the list down accordingly.
This will require either adding in
RoutablePageMixin
or overriding theserve
method to enable subsetting.From looking at the wagtail docs on
RoutablePageMixin
, it looks like it makes more sense to go that route. Especially since it would enable me to define the archive view as well.