├── .gitignore ├── LICENCE ├── README.md ├── lowdefy.yaml └── pages └── report ├── components ├── genre_counts_bar_chart.yaml ├── genre_counts_pie_chart.yaml └── ratings_table.yaml ├── report.yaml └── requests ├── get_scores_by_genre.yaml └── get_top_100_score_difference_movies.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | .lowdefy/** 2 | .env -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowdefy/lowdefy-example-reporting/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowdefy/lowdefy-example-reporting/HEAD/README.md -------------------------------------------------------------------------------- /lowdefy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowdefy/lowdefy-example-reporting/HEAD/lowdefy.yaml -------------------------------------------------------------------------------- /pages/report/components/genre_counts_bar_chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowdefy/lowdefy-example-reporting/HEAD/pages/report/components/genre_counts_bar_chart.yaml -------------------------------------------------------------------------------- /pages/report/components/genre_counts_pie_chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowdefy/lowdefy-example-reporting/HEAD/pages/report/components/genre_counts_pie_chart.yaml -------------------------------------------------------------------------------- /pages/report/components/ratings_table.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowdefy/lowdefy-example-reporting/HEAD/pages/report/components/ratings_table.yaml -------------------------------------------------------------------------------- /pages/report/report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowdefy/lowdefy-example-reporting/HEAD/pages/report/report.yaml -------------------------------------------------------------------------------- /pages/report/requests/get_scores_by_genre.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowdefy/lowdefy-example-reporting/HEAD/pages/report/requests/get_scores_by_genre.yaml -------------------------------------------------------------------------------- /pages/report/requests/get_top_100_score_difference_movies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowdefy/lowdefy-example-reporting/HEAD/pages/report/requests/get_top_100_score_difference_movies.yaml --------------------------------------------------------------------------------