include module/widget

mixin comments(comments)
  ol#comments
    for comment, id in comments
      li.comment(comment-id=id)
        div
          +icon_button.delete-comment(img='delete', title='Delete this comment')
        div.comment-name= comment.name
        div.comment-separator -
        div.comment-body= comment.body
  form#comment-form(method='POST', action='/#{event.id}/comments')
    input#comment-name(name='name', type='text', placeholder='Name')
    input#comment-body(name='body', type='text', placeholder='Message')
    +icon_button#add-comment(img='create', type='submit', title='Add Comment')
