{% extends "elektrina_base.html" %} {% block page_content %}

Pridaj nový záznam

{% for i in elektrina %}
Záznam zo dňa {{ i.datum|date:"d.m.Y" }}
Denná spotreba (deň):{{ i.spotreba_den|stringformat:".2f" }}kWh
Rozdiel spotreby (deň):{{ i.rozdiel_spotreby_den|stringformat:".2f" }}kWh
Denná spotreba (deň):{{ i.denna_spotreba_den|stringformat:".2f" }}kWh
Cena (deň):{{ i.cena_za_rozdiel_spotreby_den|stringformat:".2f" }}Eur
Denná spotreba (noc):{{ i.spotreba_noc|stringformat:".2f" }}kWh
Rozdiel spotreby (noc):{{ i.rozdiel_spotreby_noc|stringformat:".2f" }}kWh
Denná spotreba (noc):{{ i.denna_spotreba_noc|stringformat:".2f" }}kWh
Cena (noc):{{ i.cena_za_rozdiel_spotreby_noc|stringformat:".2f" }}Eur
{% endfor %} {% endblock %}