mirror of
https://github.com/welton89/RRBEC.git
synced 2026-04-05 13:35:42 +00:00
54 lines
1.3 KiB
HTML
54 lines
1.3 KiB
HTML
{% extends "base.html" %}
|
|
{% load static %}
|
|
|
|
|
|
|
|
{% block 'head' %}
|
|
<link rel="stylesheet" href="{% static 'home/css/home.css' %}">
|
|
{% endblock %}
|
|
|
|
{% block 'title' %}
|
|
RRB&C - DashBoard
|
|
{% endblock %}
|
|
|
|
{% block 'body' %}
|
|
|
|
<body>
|
|
<h1>DashBoard Aqui</h1>
|
|
<div class="grid-container">
|
|
|
|
<div class="card">
|
|
<h4> Valor Total de Pagamentos </h4>
|
|
<h4>R$ {{total_pagamentos |floatformat:2 }} </h4>
|
|
</div>
|
|
<div class="card">
|
|
<h4> Quantidade de Pagamentos </h4>
|
|
<h4> {{ qdt_pagamentos }} </h4>
|
|
<h4> Tíket médio </h4>
|
|
<h4>R$ {{ ticekMedio |floatformat:2}} </h4>
|
|
</div>
|
|
|
|
<div class="card">
|
|
<h4> Mais Vendidos </h4>
|
|
<table style="background-color: rgba(0, 255, 255, 0);">
|
|
<tr style="background-color: rgba(0, 255, 255, 0);">
|
|
<th style="text-align: left;background-color: rgba(0, 255, 255, 0.089);">Produto</th>
|
|
<th style="text-align: left;background-color: rgba(0, 255, 255, 0.075);">Quantidade</th>
|
|
</tr>
|
|
{% for produto in produtos_mais_vendidos %}
|
|
<tr>
|
|
<td style="background-color: rgba(0, 255, 255, 0);"> {{ produto.nome }} </td>
|
|
<td style="background-color: rgba(0, 255, 255, 0);"> {{ produto.quantidade }} </td>
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
</table>
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
</body>
|
|
|
|
|
|
{% endblock %} |