In my view to get url parameters like this:
date=request.GET.get('date','')
In my url I am trying to pass parameters in this way with the url template tag like this:
<td><a href="{% url 'health:medication-record?date=01/01/2001' action='add' pk=entry.id %}" >Add To Log</a></td>
The parameter after the ? is obviously not working, how can I pass this data value in order to retrieve in with a get?