ensl.org/app/views/articles/_article.html.erb
Luke Barratt cf8a92f628 Improved forms and error styling
Revert colour changes
2014-04-10 00:43:20 +01:00

26 lines
781 B
Text

<div class="article">
<h1><%= namelink article %></h1>
<div class="content">
<% if article.text_coding == Article::CODING_HTML %>
<%= article.text.html_safe %>
<% else %>
<%= article.text_parsed.html_safe %>
<% end %>
</div>
<div class="author">
<%= namelink(article.user) %> on <%= longtime article.created_at %>
</div>
<div class="actions">
<% if article.can_update? cuser %>
<%= link_to 'Edit', edit_article_path(article) %> |
<% end %>
<% if article.can_destroy? cuser %>
<%= link_to 'Destroy', article, confirm: 'Are you sure?', method: :delete %> |
<% end %>
<%= link_to "History", article_versions_path(article) %> |
<%= link_to "Comments: #{article.comments.count}", article %>
</div>
</div>