Add resultsdetail view
Project: http://git-wip-us.apache.org/repos/asf/climate/repo Commit: http://git-wip-us.apache.org/repos/asf/climate/commit/86f8adae Tree: http://git-wip-us.apache.org/repos/asf/climate/tree/86f8adae Diff: http://git-wip-us.apache.org/repos/asf/climate/diff/86f8adae Branch: refs/heads/master Commit: 86f8adae2263ebfa41f02e6e7cd757809e785978 Parents: 8a2b483 Author: Michael Joyce <[email protected]> Authored: Wed Jul 16 16:36:22 2014 -0700 Committer: Michael Joyce <[email protected]> Committed: Wed Jul 16 16:36:22 2014 -0700 ---------------------------------------------------------------------- ocw-ui/frontend-new/app/views/resultsdetail.html | 11 +++++++++++ 1 file changed, 11 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/climate/blob/86f8adae/ocw-ui/frontend-new/app/views/resultsdetail.html ---------------------------------------------------------------------- diff --git a/ocw-ui/frontend-new/app/views/resultsdetail.html b/ocw-ui/frontend-new/app/views/resultsdetail.html new file mode 100644 index 0000000..f2aab55 --- /dev/null +++ b/ocw-ui/frontend-new/app/views/resultsdetail.html @@ -0,0 +1,11 @@ +<div> + <h2>{{result}}</h2> + <div class="row-fluid text-center"> + <div class="{{alertClass}}">{{alertMessage}}</div> + <ul> + <li ng-repeat="figure in figures"> + <img class="result-figures" ng-src="{{baseURL}}/static/eval_results/{{figure}}" alt="" /> + </li> + </ul> + </div> +</div>
