I am trying to pass string information into a {% URL %}
I am getting the data from data like:
{% for p in proj %}
<tr>
<td>
<a href="{% url {{ p.dir }} %}"> {{ p.name }} </a>
</td>
</tr>
{% endfor %}
The expected result would be something like:
<a href="{% url "path" %}">Sample Info</a>
Is this even possible?
Thanks.