Skip to content

Instantly share code, notes, and snippets.

@mbmohib
Created November 6, 2016 14:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mbmohib/3c95007bb0075f0d2dc8731f95e42d29 to your computer and use it in GitHub Desktop.
Save mbmohib/3c95007bb0075f0d2dc8731f95e42d29 to your computer and use it in GitHub Desktop.
# Three methods of getting object's url:
<a href='/posts/{{ post.id }}'><p>{{ post.title }}</p></a> (#static)
<a href='{% url 'detail' id=post.id %}'><p>{{ post.title|title }}</p></a>
<a href='{{ post.get_absolute_url }}'><p>{{ post.title|title }}</p></a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment