about summary refs log tree commit diff stats
path: root/app/views/admin/blogs/_form.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/admin/blogs/_form.html.haml')
-rw-r--r--app/views/admin/blogs/_form.html.haml6
1 files changed, 6 insertions, 0 deletions
diff --git a/app/views/admin/blogs/_form.html.haml b/app/views/admin/blogs/_form.html.haml index 2066aed..12f7a82 100644 --- a/app/views/admin/blogs/_form.html.haml +++ b/app/views/admin/blogs/_form.html.haml
@@ -15,6 +15,12 @@
15 %ul 15 %ul
16 - f.object.errors.full_messages.each do |error| 16 - f.object.errors.full_messages.each do |error|
17 %li= error 17 %li= error
18 - unless f.object.new_record?
19 #entry-preview-link.details-module
20 - if f.object.published
21 = link_to "View post", blog_url(f.object.slug_was), target: "entry-preview"
22 - else
23 = link_to "Preview post", admin_blog_url(f.object), target: "entry-preview"
18 .details-module 24 .details-module
19 .published-field 25 .published-field
20 = f.check_box :published 26 = f.check_box :published