Add results view
Project: http://git-wip-us.apache.org/repos/asf/climate/repo Commit: http://git-wip-us.apache.org/repos/asf/climate/commit/8a2b4839 Tree: http://git-wip-us.apache.org/repos/asf/climate/tree/8a2b4839 Diff: http://git-wip-us.apache.org/repos/asf/climate/diff/8a2b4839 Branch: refs/heads/master Commit: 8a2b48394f9c974f11d91c6e2fa27d94c5cd477f Parents: 15a2383 Author: Michael Joyce <[email protected]> Authored: Wed Jul 16 16:36:09 2014 -0700 Committer: Michael Joyce <[email protected]> Committed: Wed Jul 16 16:36:09 2014 -0700 ---------------------------------------------------------------------- ocw-ui/frontend-new/app/views/results.html | 15 +++++++++++++++ 1 file changed, 15 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/climate/blob/8a2b4839/ocw-ui/frontend-new/app/views/results.html ---------------------------------------------------------------------- diff --git a/ocw-ui/frontend-new/app/views/results.html b/ocw-ui/frontend-new/app/views/results.html new file mode 100644 index 0000000..a8f58af --- /dev/null +++ b/ocw-ui/frontend-new/app/views/results.html @@ -0,0 +1,15 @@ +<div class="row"> + <div class="span3"> + <div id="results-sidebar" class="pa-sidebar well well-small"> + <ul class="nav nav-list"> + <li id="results-sidebar-header" class="nav-header">Latest Run Results</li> + <li ng-repeat="result in results" + ng-class="{ active: $state.includes('results.detail') && $stateParams.resultId == result }"> + <a href="#/results/{{result.replace('/', '')}}" >{{result}}</a> + </li> + </ul> + <div ui-view="menu"></div> + </div> + </div> + <div class="span9" ui-view ng-animate="{enter:'fade-enter'}"></div> +</div>
