2013-07-28 23:25:51 +02:00
|
|
|
{#
|
2013-02-08 13:07:27 +01:00
|
|
|
This file is part of Accountant.
|
|
|
|
|
|
|
|
Accountant is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Affero General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Foobar is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
|
|
along with Accountant. If not, see <http://www.gnu.org/licenses/>.
|
2013-07-28 23:25:51 +02:00
|
|
|
#}
|
|
|
|
{% extends "layout.html" %}
|
|
|
|
{% block body %}
|
|
|
|
<!-- Chart row -->
|
|
|
|
<div class="row-fluid">
|
|
|
|
<!-- Sold evolution chart placeholder -->
|
|
|
|
<div class="span8">
|
|
|
|
<div id="entries-chart-placeholder">
|
|
|
|
<svg style='height:300px'/>
|
|
|
|
</div>
|
|
|
|
</div>
|
2013-01-07 18:42:02 +01:00
|
|
|
|
2013-07-28 23:25:51 +02:00
|
|
|
<!-- Expense category piechart -->
|
|
|
|
<div class="span4">
|
|
|
|
<div id="expense-categories-chart-placeholder">
|
|
|
|
<svg style='height:300px'/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Row with entry table -->
|
|
|
|
<div class="row-fluid">
|
|
|
|
<table class="table table-striped table-condensed table-hover" ng-controller="EntryController">
|
|
|
|
<!-- Head of the table containing column headers and size -->
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th style="width: 100px">Date d'op.</th>
|
|
|
|
<th>Libellé de l'opération</th>
|
|
|
|
<th style="width: 50px">Montant</th>
|
|
|
|
<th style="width: 50px">Solde</th>
|
|
|
|
<th style="width: 100px">Catégorie</th>
|
|
|
|
<th style="width: 60px">Actions</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
|
|
|
|
<!-- Body of the table containing the entries -->
|
|
|
|
<tbody>
|
|
|
|
<tr id="entry_[[entry.id]]" class="form-inline" ng-class="entryRowClass(entry)" ng-repeat="entry in entries">
|
|
|
|
<td>
|
|
|
|
<small>
|
|
|
|
<input ng-show="isEditing(entry)" type="text" class="input-small" ng-model="entry.operation_date" data-date-format="yyyy-mm-dd" bs-datepicker/>
|
|
|
|
<span ng-show="isDisplaying(entry)">[[entry.operation_date]]</span>
|
|
|
|
</small>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<small>
|
|
|
|
<input ng-show="isEditing(entry)" type="text" class="input-xxlarge" ng-model="entry.label"/>
|
|
|
|
<span ng-show="isDisplaying(entry)">[[entry.label]]</span>
|
|
|
|
</small>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<small>
|
|
|
|
<input ng-show="isEditing(entry)" type="text" class="input-mini" ng-model="entry.value"/>
|
|
|
|
<span ng-show="isDisplaying(entry)">[[entry.value]]</span>
|
|
|
|
</small>
|
|
|
|
</td>
|
|
|
|
<td ng-class="entryValueClass(entry.sold)">
|
|
|
|
<small>
|
|
|
|
[[entry.sold]]
|
|
|
|
</small>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<small>
|
|
|
|
<input ng-show="isEditing(entry)" type="text" class="input-small" ng-model="entry.category" bs-typeahead="categories"/>
|
|
|
|
<span ng-show="isDisplaying(entry)">[[entry.category]]</span>
|
|
|
|
</small>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<div class="btn-group" ng-show="isEditing(entry)">
|
|
|
|
<a class="btn btn-mini btn-success" ng-click="saveEntry(entry)" href="#" title="Save"><i ng-class="iconSaveClass(entry)"><span style="display: none">Save</span></i></a>
|
|
|
|
<a class="btn btn-mini" ng-click="cancelEditEntry(entry)" href="#" title="Cancel"><i ng-class="iconCancelClass(entry)"><span style="display: none">Cancel</span></i></a>
|
|
|
|
<a class="btn btn-mini" ng-click="pointEntry(entry)" ng-class="pointedEntryClass(entry)" href="#" title="point"><i class="icon-pencil"><span style="display: none">Point</span></i></a>
|
2013-01-12 22:11:48 +01:00
|
|
|
</div>
|
2013-07-28 23:25:51 +02:00
|
|
|
<div class="btn-group" ng-show="isDisplaying(entry) && isSaved(entry)">
|
|
|
|
<a class="btn btn-mini" ng-click="editEntry(entry)" href="#" title="edit"><i class="icon-edit"><span style="display: none">Edit</span></i></a>
|
|
|
|
<a class="btn btn-mini" bs-modal="'{{ url_for('static', filename='templates/entry_remove.html') }}'" href="#" title="remove"><i class="icon-trash"><span style="display: none">Remove</span></i></a>
|
|
|
|
<a class="btn btn-mini" ng-click="pointEntry(entry)" ng-class="pointedEntryClass(entry)" href="#" title="point"><i class="icon-pencil"><span style="display: none">Point</span></i></a>
|
2013-01-12 22:11:48 +01:00
|
|
|
</div>
|
2013-07-28 23:25:51 +02:00
|
|
|
<div class="btn-group" ng-show="isDisplaying(entry) && !isSaved(entry)">
|
|
|
|
<a class="btn btn-mini btn-success" ng-click="saveEntry(entry)" href="#" title="Save"><i ng-class="iconSaveClass(entry)"><span style="display: none">Save</span></i></a>
|
|
|
|
<a class="btn btn-mini" ng-click="editEntry(entry)" href="#" title="edit"><i class="icon-edit"><span style="display: none">Edit</span></i></a>
|
|
|
|
<a class="btn btn-mini" ng-click="pointEntry(entry)" ng-class="pointedEntryClass(entry)" href="#" title="point"><i class="icon-pencil"><span style="display: none">Point</span></i></a>
|
2013-01-08 18:50:47 +01:00
|
|
|
</div>
|
2013-07-28 23:25:51 +02:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
|
2013-08-07 17:49:15 +02:00
|
|
|
{% block footer %}
|
|
|
|
<!-- Navbar with the months of the selected account -->
|
|
|
|
<div class="navbar navbar-fixed-bottom">
|
|
|
|
<div class="navbar-inner" ng-controller="MonthController">
|
|
|
|
<ul class="nav">
|
|
|
|
<li ng-repeat="month in months" ng-class="monthClass(month)"><a href="#" ng-click="selectMonth(month)">[[month.year]]-[[month.month]]</a></li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
|
2013-07-28 23:25:51 +02:00
|
|
|
<!-- Custom Javascript library for entries -->
|
|
|
|
{% block js %}
|
|
|
|
<script type="text/javascript" src="{{ url_for('static', filename='js/months.js') }}"></script>
|
|
|
|
<script type="text/javascript" src="{{ url_for('static', filename='js/accounts.js') }}"></script>
|
|
|
|
<script type="text/javascript" src="{{ url_for('static', filename='js/entries.js') }}"></script>
|
|
|
|
{% endblock %}
|
2013-01-07 18:42:02 +01:00
|
|
|
|