_todo.html.haml 706 字节
Newer Older
1
%li{class: "todo todo-#{todo.done? ? 'done' : 'pending'}", id: dom_id(todo) }
2
  .todo-item.todo-block
3 4 5
    = image_tag avatar_icon(todo.author_email, 40), class: 'avatar s40', alt:''

    .todo-title
6
      %span.author-name
7 8 9 10
        - if todo.author
          = link_to_author(todo)
        - else
          (removed)
11
      %span.todo-label
12
        = todo_action_name(todo)
13
        = todo_target_link(todo)
14 15 16 17 18

      · #{time_ago_with_tooltip(todo.created_at)}

    - if todo.pending?
      .todo-actions.pull-right
19
        = link_to 'Done', [:dashboard, todo], method: :delete, class: 'btn done-todo'
20 21 22 23 24

    .todo-body
      .todo-note
        .md
          = event_note(todo.body, project: todo.project)