Private
Public Access
1
0

fixing using jinja2

This commit is contained in:
Sander Roosendaal
2018-03-19 23:01:32 +01:00
parent e162cbd9b5
commit 9d46190e85
18 changed files with 10 additions and 43 deletions

View File

@@ -1,6 +1,4 @@
{% extends "emailbase.html" %}
{% load staticfiles %}
{% load rowerfilters %}
{% block body %}
<p>Dear <strong>{{ first_name }}</strong>,</p>
@@ -46,9 +44,9 @@
</tr>
{% for set in btvalues %}
<tr>
<th>{{ set|lookup:"delta" }}</th>
<th>{{ set|lookup:"cpvalue" }}</th>
<th>{{ set|lookup:"pwr" }}</th>
<th>{{ set["delta"] }}</th>
<th>{{ set["cpvalue"] }}</th>
<th>{{ set["pwr"] }}</th>
</tr>
{% endfor %}
</table>