-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (51 loc) · 1.68 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!doctype html>
<html lang="en">
<head>
<title>Shopping List Check Off</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles/bootstrap.min.css">
<script src="scripts/angular.min.js"></script>
<script src="scripts/app.js"></script>
<style>
.emptyMessage {
font-weight: bold;
color: red;
font-size: 1.2em;
}
li {
margin-bottom: 7px;
font-size: 1.2em;
}
li > button {
margin-left: 6px;
}
button > span {
color: green;
}
</style>
</head>
<body ng-app="ShoppingListCheckOff">
<div class="container">
<h1>Shopping List Check Off</h1>
<div class="row">
<!-- To Buy List -->
<div class="col-md-6" ng-controller="ToBuyShoppingController as toBuyController">
<h2>To Buy:</h2>
<ul>
<li ng-repeat="item in toBuyController.toBuyItems">Buy {{item.quantity}} {{item.name}}
<button class="btn btn-default" ng-click="toBuyController.doBuy($index);"><span class="glyphicon glyphicon-ok"></span> Bought</button></li>
</ul>
<div class="emptyMessage" ng-if="toBuyController.toBuyItems.length == 0">Everything is bought!</div>
</div>
<!-- Already Bought List -->
<div class="col-md-6" ng-controller="AlreadyBoughtShoppingController as alreadyBoughtController">
<h2>Already Bought:</h2>
<ul>
<li ng-repeat="item in alreadyBoughtController.boughtItems">Bought {{item.quantity}} {{item.name}}</li>
</ul>
<div class="emptyMessage" ng-if="alreadyBoughtController.boughtItems.length == 0">Nothing bought yet.</div>
</div>
</div>
</div>
</body>
</html>