{% extends "base.html" %} {% block title %}Home{% endblock %} {% block content %}

Olá, {{ nome_usuario }}!

{{ data_atual }}

{% if current_user.has_permission('view_cell_data') %}
Total de Militantes

{{ total_militantes }}

Ver detalhes
{% endif %} {% if current_user.has_permission('view_cell_reports') %}
Total de Cotas

R$ {{ total_cotas }}

Ver detalhes
Materiais Vendidos

{{ total_materiais }}

Ver detalhes
Assinaturas Ativas

{{ total_assinaturas }}

Ver detalhes
{% endif %}
{% if current_user.has_permission('view_cell_data') %}
Últimos Militantes Cadastrados
{% if ultimos_militantes %}
{% for militante in ultimos_militantes %}
{{ militante.nome }}
#{{ militante.id }}
{{ militante.email }}
{% endfor %}
{% else %}

Nenhum militante cadastrado recentemente.

{% endif %}
{% endif %} {% if current_user.has_permission('view_cell_reports') %}
Últimos Pagamentos
{% if ultimos_pagamentos %}
{% for pagamento in ultimos_pagamentos %}
{{ pagamento.militante.nome }}
R$ {{ "%.2f"|format(pagamento.valor) }}
{{ pagamento.data_pagamento.strftime('%d/%m/%Y') }}
{% endfor %}
{% else %}

Nenhum pagamento registrado recentemente.

{% endif %}
{% endif %}
{% endblock %}