This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-03-21 10:26:47 -07:00
|
|
|
= simple_form_for Status.new, url: statuses_path, method: :post do |f|
|
|
|
|
= f.input :text, required: true, autofocus: true, label: false, placeholder: 'What are you up to?'
|
|
|
|
|
|
|
|
.form-actions
|
|
|
|
= f.button :submit, 'Post update'
|
|
|
|
|
2016-03-25 08:10:14 -07:00
|
|
|
- content_for :raw_content do
|
|
|
|
.activity-stream.activity-stream-embedded
|
|
|
|
- @timeline.each do |status|
|
|
|
|
= render partial: 'stream_entries/status', locals: { status: status }
|