Hi All-
I'm trying to iterate through the request parameters to get an idea of what kind of data I have access to there. However, I'm having trouble figuring out the accessor attributes for individual params, so all I get is a list of blank list items.
<ul>
{% for par in params %}
<li>{{ par.key }} : {{ par.value }}</li>
{% endfor %}
</ul>
What am I missing?
Thanks!