cutalion/SetupMeetup

View on GitHub
app/views/events/_comment.html.haml

Summary

Maintainability
Test Coverage
- c = comment
.row.comment
  .span6
    .image
      = gravatar_for c.owner

    .meta
      %span.name= c.owner.name
      \/
      %span.date= c.created_at.strftime("%B %d, %Y %H:%M")
      - if c.deletable_by?(current_user)
        \/
        %span.delete= link_to "delete", c, method: 'delete'

    .body= markdown(c.body)