volontariat/voluntary

View on GitHub
app/views/stories/show.html.erb

Summary

Maintainability
Test Coverage
<h3>
  <a name="top">&nbsp;</a>
  <%= @story.name %>
</h3>

<dl class="dl-horizontal">
  <%= show_attribute :id %>
  <%= show_associations :project %>
  <%= show_actions %>
</dl>

<%= markdown @story.text %>

<%= render 'shared/comments', comment: Comment.new(commentable_type: 'Story', commentable_id: @story.id) %>