volunteers/app/views/stories/index.html.haml

17 lines
417 B
Plaintext
Raw Normal View History

2023-01-11 19:52:58 +01:00
= paginate @stories
2023-01-23 23:22:29 +01:00
2023-01-25 21:46:30 +01:00
.flex.justify-end.mr-10
2023-01-23 23:22:29 +01:00
= sort_link(@q, :happened ,class: 'flex flex-nowrap text-md')
.border-r-4.mx-4
= sort_link(@q, :created_at , class: 'flex flex-nowrap text-md')
2023-01-11 19:52:58 +01:00
- @stories.each do |story|
= render_story(story)
2023-01-11 17:48:06 +01:00
%br
2023-01-18 11:40:19 +01:00
.flex.ml-20
= link_to new_story_path do
%button.bg-cyan-200.mr-3.inline-block.rounded-lg.px-4.py-3.text-md.font-medium.border.border-gray-400
New Story