2014-03-23 00:22:25 +00:00
|
|
|
<div class="article wide">
|
2014-04-08 23:28:46 +00:00
|
|
|
<h1><%= namelink article %></h1>
|
2014-03-23 00:22:25 +00:00
|
|
|
|
|
|
|
<div class="clear content">
|
|
|
|
<% if article.text_coding == Article::CODING_HTML %>
|
2014-04-08 23:28:46 +00:00
|
|
|
<%= article.text.html_safe %>
|
2014-03-23 00:22:25 +00:00
|
|
|
<% else %>
|
2014-04-08 23:28:46 +00:00
|
|
|
<%= article.text_parsed.html_safe %>
|
2014-03-23 00:22:25 +00:00
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
|
2014-04-08 23:28:46 +00:00
|
|
|
<h4 class="author">
|
2014-03-23 00:22:25 +00:00
|
|
|
<%= namelink article.user %> on <%= longtime article.created_at %>
|
|
|
|
</h4>
|
|
|
|
|
2014-04-08 23:28:46 +00:00
|
|
|
<div class="actions">
|
2014-03-23 00:22:25 +00:00
|
|
|
<% if article.can_update? cuser %>
|
|
|
|
<%= link_to 'Edit', edit_article_path(article) %> |
|
2014-04-08 23:28:46 +00:00
|
|
|
<% end %>
|
|
|
|
<% if article.can_destroy? cuser %>
|
|
|
|
<%= link_to 'Destroy', article, confirm: 'Are you sure?', method: :delete %> |
|
2014-03-23 00:22:25 +00:00
|
|
|
<% end %>
|
|
|
|
<%= link_to "History", article_versions_path(article) %> |
|
|
|
|
<%= link_to "Comments: #{article.comments.count}", article %>
|
2014-04-08 23:28:46 +00:00
|
|
|
</div>
|
2014-03-23 00:22:25 +00:00
|
|
|
</div>
|