Retrospring/app/views/user/show.turbo_stream.haml

12 lines
346 B
Plaintext
Raw Normal View History

= turbo_stream.append "answers" do
- @answers.each do |a|
= render 'answerbox', a: a
= turbo_stream.update "paginator" do
- if @more_data_available
2023-01-21 10:50:07 -08:00
= button_to t("voc.load"), user_path(@user),
class: "btn btn-light",
method: :get,
params: { last_id: @answers_last_id },
form: { data: { turbo_stream: true } }