mirror of
https://github.com/semaphoreui/semaphore.git
synced 2025-01-22 16:20:44 +01:00
ea0245b550
- Complete more UI work - Show events on dashboard & project dashboard - Show list of tasks
13 lines
512 B
Plaintext
13 lines
512 B
Plaintext
.row
|
|
.col-sm-7
|
|
h3.no-top-margin Project activity
|
|
ul.list-unstyled
|
|
li(ng-repeat="event in events")
|
|
a(ng-if="event.project_id != null" ui-sref="project.dashboard({ project_id: event.project_id })") {{ event.project_name }}
|
|
span(ng-if="event.project_id != null")
|
|
span(ng-bind="event.object_name")
|
|
span - {{ event.description }}
|
|
.col-sm-5
|
|
h4.no-top-margin Task history
|
|
ul.list-group
|
|
li.list-group-item(ng-repeat="task in history"): a(ng-click="openTask()") {{ task.playbook }} |