summaryrefslogtreecommitdiff
path: root/app/views/dashboard/tasks/_task.html.haml
blob: d08b021f53b86df7dc36f29832eb35a74ca829dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
%li{class: "task task-#{task.done? ? 'done' : 'pending'}", id: dom_id(task) }
  .task-item{class: 'task-block'}
    = image_tag avatar_icon(task.author_email, 40), class: 'avatar s40', alt:''

    .task-title
      %span.author_name
        = link_to_author task
      %span.task_label
        = task_action_name(task)
        = task_target_link_html(task)

      · #{time_ago_with_tooltip(task.created_at)}

    - if task.pending?
      .task-actions.pull-right
        = link_to 'Done', [:dashboard, task], method: :delete, class: 'btn'

    .task-body
      .task-note
        .md
          = task_body(task.body, project: task.project)