Fix angular route urls.
This commit is contained in:
parent
d24da8d56b
commit
c3daad9cd7
@ -35,7 +35,7 @@
|
|||||||
<div class="container-fluid">
|
<div class="container-fluid">
|
||||||
<!-- Brand -->
|
<!-- Brand -->
|
||||||
<div class="navbar-header">
|
<div class="navbar-header">
|
||||||
<a class="navbar-brand" href="#/accounts"> Accountant</a>
|
<a class="navbar-brand" href="#!/accounts"> Accountant</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -41,7 +41,7 @@
|
|||||||
class="form-inline" ng-class="rowClass(account)"
|
class="form-inline" ng-class="rowClass(account)"
|
||||||
ng-repeat="account in accountsCtrl.accounts | orderBy:'name'" ng-init="account.getSolds()">
|
ng-repeat="account in accountsCtrl.accounts | orderBy:'name'" ng-init="account.getSolds()">
|
||||||
<td>
|
<td>
|
||||||
<a href="#/account/{{ account.id }}/operations">{{ account.name }}</a>
|
<a href="#!/account/{{ account.id }}/operations">{{ account.name }}</a>
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
<td>
|
<td>
|
||||||
@ -83,7 +83,7 @@
|
|||||||
<!-- Open account scheduler. -->
|
<!-- Open account scheduler. -->
|
||||||
<a class="btn btn-default"
|
<a class="btn btn-default"
|
||||||
ng-if="account.id"
|
ng-if="account.id"
|
||||||
href="#/account/{{ account.id }}/scheduler">
|
href="#!/account/{{ account.id }}/scheduler">
|
||||||
<span class="fa fa-clock-o"></span>
|
<span class="fa fa-clock-o"></span>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user