diff options
author | Marius Peter <marius.peter@tutanota.com> | 2024-12-29 15:14:43 +0100 |
---|---|---|
committer | Marius Peter <marius.peter@tutanota.com> | 2024-12-29 15:14:43 +0100 |
commit | be2a93525069de2dfa3c23b0c23e7a9f7ad4c03d (patch) | |
tree | b5493e9d35d024ce7be072ec2168b4a98ba0e63f /app/views/admin/dashboard/tmp |
First commit.
Diffstat (limited to 'app/views/admin/dashboard/tmp')
-rw-r--r-- | app/views/admin/dashboard/tmp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/app/views/admin/dashboard/tmp b/app/views/admin/dashboard/tmp new file mode 100644 index 0000000..986fc28 --- /dev/null +++ b/app/views/admin/dashboard/tmp @@ -0,0 +1,19 @@ +<% ScoringCriterium.grouped_by_category.each do |category, criteria| %> + <h3><%= category.capitalize %></h3> + <table> + <thead> + <tr> + <th>Numéro</th> + <th>Score</th> + </tr> + </thead> + <tbody> + <% @tartiflettes.each do |tartiflette| %> + <tr> + <td><%= tartiflette.scoring_id %></td> + <td><%= tartiflette.scores.where(&:scoring_criterium.include? criteria) %></td> + </tr> + <% end %> + </tbody> + </table> +<% end %> |