Thats it!  Thank you so much :P I''ve been struggling for 2 hours and you 
solved it in 5 minutes. Much appreciated!!

On Wednesday, 7 November 2018 17:01:45 UTC+2, Matthew Pava wrote:
>
> Oh, I see it now.
>
> Your second URL doesn’t correspond with the object that is inside the cell.
>
> You probably meant {% url ‘kpi_eftdetail’ *incident.eft_lead*.id %}
>
>  
>
> *From:* django...@googlegroups.com <javascript:> [mailto:
> django...@googlegroups.com <javascript:>] *On Behalf Of *Gregory Strydom
> *Sent:* Wednesday, November 7, 2018 8:58 AM
> *To:* Django users
> *Subject:* Re: Link ID's To Detail Page
>
>  
>
> Sorry I typed it in here incorrectly. Thank you for spotting that though 
> :) It is the correct way in my source file.
>
> On Wednesday, 7 November 2018 16:55:15 UTC+2, Matthew Pava wrote:
>
> 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...@googlegroups.com [mailto:django...@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...@googlegroups.com.
> To post to this group, send email to djang...@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...@googlegroups.com <javascript:>.
> To post to this group, send email to djang...@googlegroups.com 
> <javascript:>.
> 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/84ef7752-b46d-4158-9128-b80fc58850e4%40googlegroups.com
>  
> <https://groups.google.com/d/msgid/django-users/84ef7752-b46d-4158-9128-b80fc58850e4%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/c876a2fd-9ab7-4963-a562-a5b9f7615478%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to