mirror of
https://github.com/corda/corda.git
synced 2025-03-11 15:04:14 +00:00
Added angular to project. Trades are now listed on the homepage.
This commit is contained in:
parent
1a73d417ee
commit
7cd8839a59
@ -1,5 +1,5 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html ng-app="irsViewer">
|
||||||
<head>
|
<head>
|
||||||
<!-- Standard Meta -->
|
<!-- Standard Meta -->
|
||||||
<meta charset="utf-8"/>
|
<meta charset="utf-8"/>
|
||||||
@ -8,12 +8,14 @@
|
|||||||
|
|
||||||
<!-- Site Properties -->
|
<!-- Site Properties -->
|
||||||
<title>IRS Demo Viewer</title>
|
<title>IRS Demo Viewer</title>
|
||||||
<link rel="stylesheet" type="text/css" href="./semantic/semantic.css">
|
<link rel="stylesheet" type="text/css" href="semantic/semantic.css">
|
||||||
|
|
||||||
<script src="./semantic/semantic.js"></script>
|
|
||||||
|
|
||||||
|
<script src="bower_components/jquery/dist/jquery.js"></script>
|
||||||
|
<script src="semantic/semantic.js"></script>
|
||||||
|
<script src="bower_components/angular/angular.js"></script>
|
||||||
|
<script src="js/app.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body ng-controller="HomeController">
|
||||||
<div class="ui inverted menu">
|
<div class="ui inverted menu">
|
||||||
<span class="header item"><a href="./">Home</a></span>
|
<span class="header item"><a href="./">Home</a></span>
|
||||||
</div>
|
</div>
|
||||||
@ -52,12 +54,12 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr class="center aligned">
|
<tr class="center aligned" ng-repeat="deal in deals">
|
||||||
<td><a href="./deal.html">1</a></td>
|
<td><a href="./deal.html">{{deal.ref}}</a></td>
|
||||||
<td class="single line"><a href="party.html">Big Bank</a></td>
|
<td class="single line"><a href="party.html">{{deal.fixedLeg.fixedRatePayer}}</a></td>
|
||||||
<td class="single line">500 GBP</td>
|
<td class="single line">{{deal.fixedLeg.notional.quantity}} {{deal.fixedLeg.notional.token}}</td>
|
||||||
<td class="single line"><a href="party.html">Little Bank</a></td>
|
<td class="single line"><a href="party.html">{{deal.floatingLeg.floatingRatePayer}}</a></td>
|
||||||
<td class="single line">10 GBP</td>
|
<td class="single line">{{deal.floatingLeg.notional.quantity}} {{deal.floatingLeg.notional.token}}</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user