diff options
| author | 2020-10-30 17:50:15 +0200 | |
|---|---|---|
| committer | 2020-10-30 17:50:15 +0200 | |
| commit | 32912b3cdfc56e62f9fedc3fb540e37f8d43ae48 (patch) | |
| tree | ccc5cdb8ab130ffceacedae545f7011974292da5 /pydis_site/templates/content/articles.html | |
| parent | Remove unnecessary namespace from content app URLs include (diff) | |
Use Django URL generation for content app templates
Diffstat (limited to 'pydis_site/templates/content/articles.html')
| -rw-r--r-- | pydis_site/templates/content/articles.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pydis_site/templates/content/articles.html b/pydis_site/templates/content/articles.html index 47614541..68d23611 100644 --- a/pydis_site/templates/content/articles.html +++ b/pydis_site/templates/content/articles.html @@ -13,7 +13,7 @@ <div class="container"> <nav class="breadcrumb is-pulled-left" aria-label="breadcrumbs"> <ul> - <li class="is-active"><a href="/articles">Articles</a></li> + <li class="is-active"><a href="{% url "content:articles" %}">Articles</a></li> </ul> </nav> </div> |