diff options
Diffstat (limited to 'app/views/admin')
-rw-r--r-- | app/views/admin/dashboard/index.html.erb | 10 | ||||
-rw-r--r-- | app/views/admin/dashboard/tmp | 19 |
2 files changed, 29 insertions, 0 deletions
diff --git a/app/views/admin/dashboard/index.html.erb b/app/views/admin/dashboard/index.html.erb new file mode 100644 index 0000000..30cf866 --- /dev/null +++ b/app/views/admin/dashboard/index.html.erb @@ -0,0 +1,10 @@ +<h1>Administrateur</h1> + +<!-- <h2>Tartiflettes</h2> --> + +<p> + <%= button_to "Déconnexion", + session_path(session), + method: :delete %> +</p> +<p><%= link_to "Télécharger tous les scores en format CSV", admin_scores_export_path %></p> 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 %> |