datatracker/ietf/api/templates/api/dictitem.html
Lars Eggert 021ba39712 Reindent all templates with djhtml
- Legacy-Id: 19610
2021-11-10 09:41:11 +00:00

9 lines
193 B
HTML

{
<!-- dictitem.html -->
<div style="margin-left: 1em;">
{% for key, value in data.items %}
"{{key}}": {{value}}{% if not forloop.last %},{% endif %}<br/>
{% endfor %}
</div>
}