Skip to content

Instantly share code, notes, and snippets.

@AntelopeSalad
Created January 24, 2014 18:09
Show Gist options
  • Save AntelopeSalad/8602798 to your computer and use it in GitHub Desktop.
Save AntelopeSalad/8602798 to your computer and use it in GitHub Desktop.
# old way:
<a href="{% url 'leads:detail' lead.pk %}">{{ lead.pk }}</a>
# new way:
<a href="{{ lead.get_absolute_url }}">{{ lead.pk }}</a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment