barbacompta/eo_gestion/templates/admin/index.html

30 lines
661 B
HTML

{% extends "admin/old_index.html" %}
{% load i18n %}
{% load eo_banque %}
{% load eo_facture %}
{% block content %}
<div id="content-main">
{% echeances %}
{% if 'cpf' in request.GET %}
<a href="?">Afficher tout le monde</a><br />
{% if request.GET.cpf == 'True' %}
{% income_by_clients user %}
{% else %}
{% income_by_clients %}
{% endif %}
{% else %}
<a href="?cpf=True">N'afficher que mes clients</a><br />
{% income_by_clients %}
{% endif %}
{% impayees %}
{% a_facturer %}
{% finances 8 %}
</div>
{% endblock %}
{% block sidebar_module %}
{% income %}
{% endblock %}