I have a template like below:
<a href={{j}}>
<img src="{{k}}" class="img-responsive img-rounded" data-toggle="modal"
data-target="#myModal" style="width:350px;height:200px;">
</a>
I have a function like below:
def function_url(request):
a = get_the_value_of_{{j}} # how to get the value of {{j}}
How to send the {{j}}
value to the function (function_url) when user clicks on the photo url either with ajax or django?