diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2018-07-06 16:52:48 -0400 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2018-07-06 16:52:48 -0400 |
commit | dd231a335758873dcd9024db7618837094fcc0a5 (patch) | |
tree | f65a353ff0988e2be5970c29bd6bb7bb4d5c9edf /app/views/admin/streams | |
parent | 2586fba3b8a181289c597071733774b3a406f675 (diff) | |
download | thoughts-dd231a335758873dcd9024db7618837094fcc0a5.tar.gz thoughts-dd231a335758873dcd9024db7618837094fcc0a5.tar.bz2 thoughts-dd231a335758873dcd9024db7618837094fcc0a5.zip |
Added page titles
refs #4
Diffstat (limited to 'app/views/admin/streams')
-rw-r--r-- | app/views/admin/streams/edit.html.haml | 1 | ||||
-rw-r--r-- | app/views/admin/streams/index.html.haml | 1 | ||||
-rw-r--r-- | app/views/admin/streams/new.html.haml | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/app/views/admin/streams/edit.html.haml b/app/views/admin/streams/edit.html.haml index 1b58331..8d910fe 100644 --- a/app/views/admin/streams/edit.html.haml +++ b/app/views/admin/streams/edit.html.haml | |||
@@ -1,2 +1,3 @@ | |||
1 | - title "Editing #{@stream.title}" | ||
1 | = form_for @stream, url: admin_stream_url(@stream), html: { id: "entry-form" } do |f| | 2 | = form_for @stream, url: admin_stream_url(@stream), html: { id: "entry-form" } do |f| |
2 | = render partial: "form", locals: { f: f } | 3 | = render partial: "form", locals: { f: f } |
diff --git a/app/views/admin/streams/index.html.haml b/app/views/admin/streams/index.html.haml index c69c6f9..6903fd1 100644 --- a/app/views/admin/streams/index.html.haml +++ b/app/views/admin/streams/index.html.haml | |||
@@ -1,3 +1,4 @@ | |||
1 | - title "Streams" | ||
1 | %table#entries | 2 | %table#entries |
2 | %tr | 3 | %tr |
3 | %th Title | 4 | %th Title |
diff --git a/app/views/admin/streams/new.html.haml b/app/views/admin/streams/new.html.haml index 52febf5..875805a 100644 --- a/app/views/admin/streams/new.html.haml +++ b/app/views/admin/streams/new.html.haml | |||
@@ -1,2 +1,3 @@ | |||
1 | - title "New stream" | ||
1 | = form_for @stream, url: admin_streams_url, html: { id: "entry-form" } do |f| | 2 | = form_for @stream, url: admin_streams_url, html: { id: "entry-form" } do |f| |
2 | = render partial: "form", locals: { f: f } | 3 | = render partial: "form", locals: { f: f } |