15 lines
425 B
Text
15 lines
425 B
Text
***Deprecated:
|
|
Replaced by converting html template to plaintext
|
|
using the html2text library
|
|
***
|
|
|
|
Title: {{title}}
|
|
{% for section in sections %}
|
|
{{section.title}}
|
|
{% for field in section.fields %}
|
|
{{field.label}}: {{field.value|default:"empty"}}
|
|
{% endfor %}
|
|
{% for rule in section.rule_violations %}
|
|
[RULE] {{rule.label}}: {{rule.rule_break_text}}
|
|
{% endfor %}
|
|
{% endfor %}
|