added and hiding buttons
This commit is contained in:
parent
55ad067967
commit
c1787b71b7
@ -17,5 +17,6 @@
|
|||||||
</section>
|
</section>
|
||||||
<script src="/s/jquery-latest.js"></script>
|
<script src="/s/jquery-latest.js"></script>
|
||||||
<script src="/s/bootstrap/js/bootstrap.min.js"></script>
|
<script src="/s/bootstrap/js/bootstrap.min.js"></script>
|
||||||
|
{{ template "script" . }}
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
@ -1,9 +1,11 @@
|
|||||||
{{ define "title" }}Welcome{{ end }}
|
{{ define "title" }}Welcome{{ end }}
|
||||||
|
|
||||||
{{ define "content" }}
|
{{ define "content" }}
|
||||||
<div class="container pw">
|
<div class="container">
|
||||||
<table class="table table-striped table-bordered table-hover">
|
<table class="table table-striped table-bordered table-hover">
|
||||||
<tr>
|
<caption>Allowance totals for our children</caption>
|
||||||
|
</thead>
|
||||||
|
<tr class="info">
|
||||||
<td>
|
<td>
|
||||||
Name
|
Name
|
||||||
</td>
|
</td>
|
||||||
@ -11,17 +13,40 @@
|
|||||||
Amount
|
Amount
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
{{ range .children }}
|
{{ range .children }}
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td class="name">
|
||||||
{{ .Name }}
|
{{ .Name }}
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
{{ dollarize .Money }}
|
{{ dollarize .Money }}
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr class="controls">
|
||||||
|
<td colspan=2>
|
||||||
|
<div class="btn-group">
|
||||||
|
<button class="btn" value=100>$1.00</button>
|
||||||
|
<button class="btn" value=25>25¢</button>
|
||||||
|
<button class="btn" value=10>10¢</button>
|
||||||
|
<button class="btn" value=5>5¢</button>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</ul>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
|
{{ define "script" }}
|
||||||
|
<script>
|
||||||
|
$(function() {
|
||||||
|
$(".controls").hide();
|
||||||
|
$(".name").click(function(e) {
|
||||||
|
console.log(e)
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
{{ end }}
|
||||||
|
Loading…
Reference in New Issue
Block a user