gitlab-org--gitlab-foss/app/views/dashboard/todos/_todo.html.haml

54 lines
1.6 KiB
Text
Raw Normal View History

%li{ class: "todo todo-#{todo.done? ? 'done' : 'pending'}", id: dom_id(todo), data: { url: todo_target_path(todo) } }
2017-02-20 08:13:37 -05:00
.todo-avatar
= author_avatar(todo, size: 40)
2016-07-20 08:01:29 -04:00
.todo-item.todo-block
.todo-title.title
- unless todo.build_failed? || todo.unmergeable?
2016-05-23 20:34:55 -04:00
= todo_target_state_pill(todo)
2017-02-20 08:13:37 -05:00
.title-item.author-name
- if todo.author
= link_to_author(todo, self_added: todo.self_added?)
- else
(removed)
2017-02-20 08:13:37 -05:00
.title-item.action-name
= todo_action_name(todo)
2017-02-20 08:13:37 -05:00
.title-item.todo-label
- if todo.target
= todo_target_link(todo)
- else
(removed)
2016-02-20 08:59:59 -05:00
- if todo.self_assigned?
.title-item.action-name
to yourself
2017-02-20 08:13:37 -05:00
.title-item
·
.title-item
#{time_ago_with_tooltip(todo.created_at)}
= todo_due_date(todo)
2016-02-20 08:59:59 -05:00
.todo-body
.todo-note
.md
= first_line_in_markdown(todo, :body, 150, project: todo.project)
2016-07-20 08:01:29 -04:00
- if todo.pending?
.todo-actions
= link_to dashboard_todo_path(todo), method: :delete, class: 'btn btn-loading js-done-todo', data: { href: dashboard_todo_path(todo) } do
2016-07-20 08:01:29 -04:00
Done
= icon('spinner spin')
= link_to restore_dashboard_todo_path(todo), method: :patch, class: 'btn btn-loading js-undo-todo hidden', data: { href: restore_dashboard_todo_path(todo) } do
Undo
= icon('spinner spin')
- else
.todo-actions
= link_to restore_dashboard_todo_path(todo), method: :patch, class: 'btn btn-loading js-add-todo', data: { href: restore_dashboard_todo_path(todo) } do
Add todo
= icon('spinner spin')