If you just copied and pasted from your template into this email, the problem 
is a syntax error.  You did not close your URL tag with a %}.
<td><a href="{% url 'kpi_detail' incident.id %}">{{ incident.ir_num }}</a></td>
<td><a href="{% url 'kpi_eftdetail' eftlead.id %}">{{ 
incident.eft_lead}}</a></td>


From: django-users@googlegroups.com [mailto:django-users@googlegroups.com] On 
Behalf Of Gregory Strydom
Sent: Wednesday, November 7, 2018 8:50 AM
To: Django users
Subject: Link ID's To Detail Page

Hi there.

I am really not sure how to phrase this questions so I will just do my best.

On the homepage of my app I have a table with information. Most of the 
information in each cell is also a link to a details page like so:

<td><a href="{% url 'kpi_detail' incident.id">{{ incident.ir_num }}</a></td>

What I am struggling to get working is adding another link to a different cell 
in the same table.

<td><a href="{% url 'kpi_eftdetail' eftlead.id">{{ incident.eft_lead}}</a></td>

My 2 urls are set us as such:

url(r'^detail/(?P<incident_id>\d+)$', views.incident_detail, name='kpi_detail'),

url(r'^eftlead/(?P<eftlead>\d+)$', views.eftlead_detail, name='kpi_eftdetail')

My index view is like so:

def kpi_index(request):
  context = dict()
  context['incidents'] = KPIIncidents.objects.all()
  return render(request, 'kpi/index.html', context)

If I set everything up like that I am getting an error of no reverse match on 
the index page. I think  the problem I am having is  I am not setting up the 
eft_lead link properly in the index view, but I am not sure how I would go 
about this.

It is very difficult to explain without showing my whole source code I think 
but I am not sure how to do that on Google groups.

Any help would be much appreciated. Thank you!




--
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to 
django-users+unsubscr...@googlegroups.com<mailto:django-users+unsubscr...@googlegroups.com>.
To post to this group, send email to 
django-users@googlegroups.com<mailto:django-users@googlegroups.com>.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/6ac26c7e-be21-468c-9146-25be6b28ee57%40googlegroups.com<https://groups.google.com/d/msgid/django-users/6ac26c7e-be21-468c-9146-25be6b28ee57%40googlegroups.com?utm_medium=email&utm_source=footer>.
For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/66b71828e2564644a38327d875693e43%40iss2.ISS.LOCAL.
For more options, visit https://groups.google.com/d/optout.

Reply via email to