reusing the blocklist template. Parsing new model
This commit is contained in:
parent
e1f958345e
commit
100b901581
@ -14,7 +14,7 @@ angular.module('mystery').config(['$routeProvider',
|
|||||||
templateUrl: 'views/blocks/list.html'
|
templateUrl: 'views/blocks/list.html'
|
||||||
}).
|
}).
|
||||||
when('/blocks-date/:blockDate', {
|
when('/blocks-date/:blockDate', {
|
||||||
templateUrl: 'views/blocks/list_date.html'
|
templateUrl: 'views/blocks/list.html'
|
||||||
}).
|
}).
|
||||||
otherwise({
|
otherwise({
|
||||||
redirectTo: '/'
|
redirectTo: '/'
|
||||||
|
|||||||
@ -3,13 +3,7 @@
|
|||||||
angular.module('mystery.blocks').controller('BlocksController', ['$scope', '$routeParams', '$location', 'Global', 'Block', 'Blocks', function ($scope, $routeParams, $location, Global, Block, Blocks) {
|
angular.module('mystery.blocks').controller('BlocksController', ['$scope', '$routeParams', '$location', 'Global', 'Block', 'Blocks', function ($scope, $routeParams, $location, Global, Block, Blocks) {
|
||||||
$scope.global = Global;
|
$scope.global = Global;
|
||||||
|
|
||||||
$scope.list_blocks = function() {
|
$scope.list = function() {
|
||||||
Blocks.query(function(blocks) {
|
|
||||||
$scope.blocks = blocks;
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
$scope.list_blocks_date = function() {
|
|
||||||
Blocks.query({
|
Blocks.query({
|
||||||
blockDate: $routeParams.blockDate
|
blockDate: $routeParams.blockDate
|
||||||
}, function(blocks) {
|
}, function(blocks) {
|
||||||
|
|||||||
@ -1,10 +1,17 @@
|
|||||||
<section data-ng-controller="BlocksController" data-ng-init="list_blocks()">
|
<section data-ng-controller="BlocksController" data-ng-init="list()">
|
||||||
<div class="page-header">
|
<div class="page-header">
|
||||||
<h1>Blocks by Date</h1>
|
<h1>Blocks by Date</h1>
|
||||||
</div>
|
</div>
|
||||||
<ul>
|
<table class="table table-striped">
|
||||||
<li data-ng-repeat="block in blocks">
|
<thead>
|
||||||
<span>{{block.hash}}</span> {{block.time}}
|
<th>Hash</th>
|
||||||
</li>
|
<th>Solved at</th>
|
||||||
</ul>
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr data-ng-repeat="block in blocks">
|
||||||
|
<td><a href="#!/block/{{block.hash}}">{{block.hash}}</a></td>
|
||||||
|
<td>{{block.time}}</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
</section>
|
</section>
|
||||||
@ -1,10 +0,0 @@
|
|||||||
<section data-ng-controller="BlocksController" data-ng-init="list_blocks_date()">
|
|
||||||
<div class="page-header">
|
|
||||||
<h1>Blocks by defined date</h1>
|
|
||||||
</div>
|
|
||||||
<ul>
|
|
||||||
<li data-ng-repeat="block in blocks">
|
|
||||||
<span>{{block.hash}}</span> {{block.time}}
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</section>
|
|
||||||
Loading…
Reference in New Issue
Block a user