2022-09-07 14:20:47 -07:00
|
|
|
= turbo_stream.append "questions" do
|
|
|
|
- @questions.each do |q|
|
|
|
|
= render 'shared/question', q: q, type: nil
|
|
|
|
|
|
|
|
= turbo_stream.update "paginator" do
|
|
|
|
- if @more_data_available
|
2023-01-21 11:04:55 -08:00
|
|
|
= button_to t("voc.load"), show_user_questions_path(@user),
|
|
|
|
class: "btn btn-light",
|
|
|
|
method: :get,
|
|
|
|
params: { last_id: @questions_last_id },
|
2023-03-19 06:42:01 -07:00
|
|
|
data: { controller: :hotkey, hotkey: "." },
|
2023-01-21 11:04:55 -08:00
|
|
|
form: { data: { turbo_stream: true } }
|