1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <!-- Licensed Materials - Property of IBM
- IBM Cognos Products: BI Titan
- (C) Copyright IBM Corp. 2015, 2016
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <div class="bi-admin-testflow">
- <table role="presentation">
- <tr>
- <td class="bi-admin-testflow-test">
- <div class="bi-admin-border-wrapper">
- <button id="test" type="button" class="bi-button">{{=it.strings.test}}</button>
- </div>
- </td>
- <td class="bi-admin-testflow-cancel">
- <div class="bi-admin-border-wrapper">
- <button id="cancel" type="button" class="bi-button">{{=it.strings.cancel}}</button>
- </div>
- </td>
- <td class="bi-admin-testflow-retry">
- <div class="bi-admin-border-wrapper">
- <button id="retry" type="button" class="bi-button">{{=it.strings.retry}}</button>
- </div>
- </td>
- <td class="bi-admin-testflow-testing text" role="alert">
- <span>{{=it.strings.testing}}</span>
- <span id='times'></span>
- <span id='indicator' class="gap testing-indicator"></span>
- </td>
- <td class="bi-admin-testflow-canceled">
- <span class="icon"><svg class="svgIcon"><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#common-failed"></use></svg></span>
- <span class="gap">{{=it.strings.canceled}}</span>
- </td>
- <td class="bi-admin-testflow-failed text" role="alert">
- <span class="icon"><svg class="svgIcon"><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#common-error"></use></svg></span>
- <span class="primary" id="primaryText">{{=it.strings.failed}}</span>
- <span id="more" class="more">
- <span class="ring">
- <svg class="svgIcon"><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#common-information"></use></svg>
- </span>
- </span>
- </td>
- <td class="bi-admin-testflow-success text">
- <span class="icon"><svg class="svgIcon"><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#common-success"></use></svg></span>
- <span id="primaryText">{{=it.strings.success}}</span>
- <span id="more" class="more">
- <span class="ring">
- <svg class="svgIcon"><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#common-information"></use></svg>
- </span>
- </span>
- </td>
- </tr>
- </table>
- <div id="detail" class="detail">
- </div>
- <div>
|