Sha256: 27d3984a5db545f8e71e48cd53319f6983da8f61e5962530319463abd4d8a155
Contents?: true
Size: 1010 Bytes
Versions: 1
Compression:
Stored size: 1010 Bytes
Contents
= cache post do = content_tag_for :tr, post, :"data-post-id" => post.id, :"data-state" => post.state, :"data-ready-for-review" => post.ready_for_review do td= post.title td= post.author_email td.span2.published-at = post.published_at.try(:to_s, :crowdblog_short) td.span1 - if current_user.is_publisher? = link_to 'Publish', '#', :class => "btn btn-small publish-btn btn-danger #{(post.published? ? 'draft' : 'publish')}" td.span1 .btn-group.states button.btn.btn-small.draft Drafted button.btn.btn-small.finish Finished - if !current_user.is_publisher? button.btn.btn-small.disabled.publish-status - if current_user.is_publisher? button.btn.btn-small.review Reviewed td.span1 = link_to 'Delete', crowdblog.admin_post_path(post), :method => :delete, :confirm => 'Are you sure?', :class => "btn btn-small" td.span1 = link_to 'Edit', crowdblog.edit_admin_post_path(post), :class => "btn btn-small"
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
crowdblog-0.3.2 | app/views/crowdblog/admin/posts/_post.html.slim |