This commit is contained in:
Alexis Lahouze 2015-08-21 01:12:06 +02:00
parent c221dbb97c
commit 41647324ef
5 changed files with 1 additions and 12 deletions

View File

@ -47,10 +47,6 @@ accountantApp
* Load operations. * Load operations.
*/ */
$scope.load = function() { $scope.load = function() {
// Clean up selected entry.
$scope.selectedOperation = null;
$scope.savedOperation = null;
$scope.operations = ScheduledOperation.query({ $scope.operations = ScheduledOperation.query({
account: $routeParams.accountId account: $routeParams.accountId
}); });

View File

@ -17,7 +17,6 @@
<!-- vim: set tw=80 ts=2 sw=2 sts=2: --> <!-- vim: set tw=80 ts=2 sw=2 sts=2: -->
<div class="row"> <div class="row">
<table class="table table-striped table-condensed table-hover"> <table class="table table-striped table-condensed table-hover">
<!-- Head of the table containing column headers and size -->
<thead> <thead>
<tr> <tr>
<th class="">Nom du compte</th> <th class="">Nom du compte</th>

View File

@ -29,10 +29,8 @@
</div> </div>
</div> </div>
<!-- Row with entry table -->
<div class="row"> <div class="row">
<table class="table table-striped table-condensed table-hover"> <table class="table table-striped table-condensed table-hover">
<!-- Head of the table containing column headers and size -->
<thead> <thead>
<tr> <tr>
<th class="col-md-1">Date d'op.</th> <th class="col-md-1">Date d'op.</th>
@ -44,7 +42,6 @@
</tr> </tr>
</thead> </thead>
<!-- Body of the table containing the entries -->
<tbody> <tbody>
<tr> <tr>
<td colspan="6"> <td colspan="6">

View File

@ -15,10 +15,8 @@
along with Accountant. If not, see <http://www.gnu.org/licenses/>. along with Accountant. If not, see <http://www.gnu.org/licenses/>.
--> -->
<!-- vim: set tw=80 ts=2 sw=2 sts=2: --> <!-- vim: set tw=80 ts=2 sw=2 sts=2: -->
<!-- Row with entry table -->
<div class="row"> <div class="row">
<table class="table table-striped table-condensed table-hover"> <table class="table table-striped table-condensed table-hover">
<!-- Head of the table containing column headers and size -->
<thead> <thead>
<tr> <tr>
<th class="col-md-1">Date de d&eacute;but</th> <th class="col-md-1">Date de d&eacute;but</th>
@ -32,7 +30,6 @@
</tr> </tr>
</thead> </thead>
<!-- Body of the table containing the entries -->
<tbody> <tbody>
<tr> <tr>
<td colspan="8"> <td colspan="8">

View File

@ -94,7 +94,7 @@
<div ng-view></div> <div ng-view></div>
</div> </div>
<!-- Custom Javascript library for entries --> <!-- Custom Javascript libraries -->
{% assets "frontend_js" %} {% assets "frontend_js" %}
<script type="text/javascript" src="{{ ASSET_URL }}"></script> <script type="text/javascript" src="{{ ASSET_URL }}"></script>
{% endassets %} {% endassets %}