Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_todo.html.haml « todos « dashboard « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f878d36e7394008d913e1d7e467bd38a36049d93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
%li{class: "todo todo-#{todo.done? ? 'done' : 'pending'}", id: dom_id(todo) }
  .todo-item.todo-block
    = image_tag avatar_icon(todo.author_email, 40), class: 'avatar s40', alt:''

    .todo-title
      %span.author-name
        = link_to_author todo
      %span.todo-label
        = todo_action_name(todo)
        = todo_target_link(todo)

      · #{time_ago_with_tooltip(todo.created_at)}

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

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