Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Django Apps
hello i need to link to a view function from a table value:
I have this
{% for row in table.rows %}
<tr>
{% for value in row %}
------here i need to link to one funcione of my view but i need also
to pass the id value, how can i get the id value?
<td><a href="/scarico?id=id">{{value}}<td>
{% endfor %}
</tr>