You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
411 B

  1. = simple_form_for Status.new, url: statuses_path, method: :post do |f|
  2. = f.input :text, required: true, autofocus: true, label: false, placeholder: 'What are you up to?'
  3. .form-actions
  4. = f.button :submit, 'Post update'
  5. - content_for :raw_content do
  6. .activity-stream.activity-stream-embedded
  7. - @timeline.each do |status|
  8. = render partial: 'stream_entries/status', locals: { status: status }