Files
codeocean/app/views/community_solutions/index.html.slim
Sebastian Serth da4e10b990 Add CommunitySolution
* Also slightly refactor some JS files
2021-11-23 01:38:31 +01:00

20 lines
453 B
Plaintext

h1 Listing community_solutions
table
thead
tr
th
th
th
tbody
- @community_solutions.each do |community_solution|
tr
td = link_to 'Show', community_solution
td = link_to 'Edit', edit_community_solution_path(community_solution)
td = link_to 'Destroy', community_solution, data: { confirm: 'Are you sure?' }, method: :delete
br
= link_to 'New Community solution', new_community_solution_path