mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-15 09:21:25 +00:00
09026a2e4b
Tweak colour brightnesses
25 lines
775 B
Text
25 lines
775 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), class: 'button tiny' %>
|
|
<% end %>
|
|
<% if article.can_destroy? cuser %>
|
|
<%= link_to 'Destroy', article, confirm: 'Are you sure?', method: :delete, class: 'button tiny' %>
|
|
<% end %>
|
|
<%= link_to "History", article_versions_path(article), class: 'button tiny' %>
|
|
</div>
|
|
</div>
|