Hi,
In the Documents is says
Export templates are written in Django's template language, which is very similar to Jinja2. The list of objects returned from the database is stored in the queryset variable, which you'll typically want to iterate through using a for loop. Object properties can be access by name.
But how can i output a list of all the possible headers for a particualr type of assest.
I want to do some thing like below where I am focusing on the device type, but this is not working as I assume I am not using the right name for the primary IP?
{% for device in queryset %}
{% endfor %}
It would be nice in the documents is there was an example to extract all the possible field vlaues that can be used to create and output from. So I can see
possible values are
device.serialnumber
device.location
..
..
..
..
..