Star Ratings Plugin - Summary Page

Hi.

I’m using the Star Ratings Plugin with the Learn2 theme - essentially every page can have a star ranking (it’s a television show fansite and each page relates to an episode).

The star ratings work great on a per-page basis but I’d really like to create a ‘master summary’ page that lists all pages and their associated star rating - maybe even sortable by rating.

I’ve read the docs on the github repo for the plugin, but I can’t really figure out how to get started creating this page. Is anyone else doing something similar or can perhaps point me in the right direction?

Thanks!

Never used the stars rating plugin but it looks like it only requires an id, so you just have to loop through all the pages and display their ratings.

Exemple:
{% for item in pages %}
{{ item.title }} - {{ stars(item.route) }}
{% endfor %}

Thanks for your response. I haven’t had time to check it yet but I will let you know my results!