# HG changeset patch # User BenoƮt Allard # Date 1412765119 -7200 # Node ID 7998a57c9b48da4337f97d6e93c304e3513740a6 # Parent 4c6e15514a6dc4e8c4280ccca7602ace38fe338e Output multiple Name and Organization per Acknowledgment diff -r 4c6e15514a6d -r 7998a57c9b48 farolluz/templates/cvrf.j2 --- a/farolluz/templates/cvrf.j2 Wed Oct 08 12:44:20 2014 +0200 +++ b/farolluz/templates/cvrf.j2 Wed Oct 08 12:45:19 2014 +0200 @@ -118,12 +118,12 @@ {%- for acknowledgment in cvrf._acknowledgments %} - {%- if acknowledgment._name %} - {{ acknowledgment._name }} - {%- endif %} - {%- if acknowledgment._organization %} - {{ acknowledgment._organization }} - {%- endif %} + {%- for name in acknowledgment._names %} + {{ name }} + {%- endfor %} + {%- for organization in acknowledgment._organizations %} + {{ organization }} + {%- endfor %} {%- if acknowledgment._description %} {{ acknowledgment._description }} {%- endif %}