0ffb605e13
Patch for test-details page. Includes new page, directives, controller, and route for navigation. The detail page URL follows the same format as the timeline URL. Currently tabs are used to display detail information, but this may be replaced in a future revision. The page is navigated to from the timeline details panel via a button in the bottom-right corner. Change-Id: I003125a33f87aa7e4c8251756e1fe5f447abac56
33 lines
1022 B
HTML
33 lines
1022 B
HTML
<header class="bs-header">
|
|
<div class="container">
|
|
<h1 class="page-header">
|
|
Timeline: {{ timeline.dataset.name }}
|
|
<small>#{{ timeline.dataset.id }}</small>
|
|
</h1>
|
|
</div>
|
|
</header>
|
|
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<div class="alert alert-danger" ng-if="!!timeline.error">
|
|
{{ timeline.error }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row" ng-if="!timeline.error">
|
|
<div class="col-lg-12">
|
|
<timeline dataset="timeline.dataset"
|
|
hovered-item="timeline.hoveredItem"
|
|
selected-item="timeline.selectedItem"
|
|
preselect="timeline.preselect"></timeline>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<a name="details"></a>
|
|
<timeline-details dataset="timeline.dataset" item="timeline.selectedItem"></timeline-details>
|
|
</div>
|
|
</div>
|
|
</div>
|