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.
*/
$scope.load = function() {
// Clean up selected entry.
$scope.selectedOperation = null;
$scope.savedOperation = null;
$scope.operations = ScheduledOperation.query({
account: $routeParams.accountId
});

View File

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

View File

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

View File

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

View File

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