Merge pull request #14 from tpokorra/TP-20210130-smallfix

small fix: reorder the output of rates per period
This commit was merged in pull request #14.
This commit is contained in:
2021-01-30 22:02:19 +01:00
committed by GitHub
+2 -2
View File
@@ -102,10 +102,10 @@
<h4>{{ g.label }}</h4> <h4>{{ g.label }}</h4>
<img src="/graph?crypto={{ c.crypto }}&fiat=EUR&{{g.period}}" loading="lazy"><br/> <img src="/graph?crypto={{ c.crypto }}&fiat=EUR&{{g.period}}" loading="lazy"><br/>
Start: {{ g.startdate }} {{ g.startvalue|floatformat:0 }} EUR<br/> Start: {{ g.startdate }} {{ g.startvalue|floatformat:0 }} EUR<br/>
Min: {{ g.mindate }} {{ g.minvalue|floatformat:0 }} EUR<br/>
Max: {{ g.maxdate }} {{ g.maxvalue|floatformat:0 }} EUR<br/>
Now: {{ g.curdate }} {{ g.curvalue|floatformat:0 }} EUR<br/> Now: {{ g.curdate }} {{ g.curvalue|floatformat:0 }} EUR<br/>
Diff: {{ g.diffPercentage|floatformat:1 }} %<br/> Diff: {{ g.diffPercentage|floatformat:1 }} %<br/>
Min: {{ g.mindate }} {{ g.minvalue|floatformat:0 }} EUR<br/>
Max: {{ g.maxdate }} {{ g.maxvalue|floatformat:0 }} EUR<br/>
</div> </div>
{% endfor %} {% endfor %}
</div> </div>