You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't know how else to describe this but we are trying to create more dynamic reporting for our system, and want to something like the following,
{% for member in members %}
<tr>
{% for Field in Fields %} <td >{{ field.name }}</td> {% endfor %}
</tr>
{% endfor %}
where field.name has strings like member.name or member.group and will get the member.name etc instead of just outputting the string "member.name" like the eval function.
The text was updated successfully, but these errors were encountered:
I don't know how else to describe this but we are trying to create more dynamic reporting for our system, and want to something like the following,
where field.name has strings like
member.name
ormember.group
and will get the member.name etc instead of just outputting the string "member.name" like the eval function.The text was updated successfully, but these errors were encountered: