ui: add kv to nav, embed

This commit is contained in:
Jack Pearkes 2014-04-25 13:36:48 -04:00
parent bc5c768c41
commit 9018d34383
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@
</div>
<div class="col-md-2 col-sm-3">
<a class="btn btn-default" href="#">Key/Value</a>
{{#link-to 'kv' class='btn btn-default'}}Key/Value{{/link-to}}
</div>
<div class="col-md-2 col-md-offset-1 col-sm-3 col-sm-offset-0">

View File

@ -13,10 +13,10 @@ App.Router.map(function() {
this.resource("nodes", { path: "/nodes" }, function() {
this.route("show", { path: "/:name" });
});
this.resource("kv", { path: "/kv" });
});
this.route("index", { path: "/" });
this.route("kv", { path: "/:dc/kv" });
});