1859f53206
Add J2 test case as well as a sample output Signed-off-by: Shu0T1an ChenG <shuche@microsoft.com>
17 lines
339 B
Django/Jinja
17 lines
339 B
Django/Jinja
[
|
|
{% if PORT %}
|
|
{% for port in PORT %}
|
|
{% if PORT[port].has_key('speed') %}
|
|
{
|
|
"PORT_TABLE:{{ port }}": {
|
|
"speed": "{{ PORT[port]['speed'] }}",
|
|
"description": "{{ PORT[port]['description'] }}"
|
|
},
|
|
"OP": "SET"
|
|
}{% if not loop.last %},{% endif %}
|
|
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
]
|