diff options
author | 2021-11-19 10:11:18 +0800 | |
---|---|---|
committer | 2023-05-06 11:04:36 +0200 | |
commit | b4e843ebc1fa35c457e59bfff252b252ef2ef77f (patch) | |
tree | 935b7e3a265e59e569710a473009d7552bfd4962 /pydis_site/templates | |
parent | Merge pull request #961 from python-discord/dependabot/pip/django-4.2.1 (diff) |
feat: Edit on GitHub button for content articles
- Using `if pages` to check whether the page is an article or category
doesn't work for /pages/guides
- I still need to modify the styling and position of the button a bit
- Should probably just use a static method and put src_url as context
instead of having a template tag
Diffstat (limited to 'pydis_site/templates')
-rw-r--r-- | pydis_site/templates/content/base.html | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pydis_site/templates/content/base.html b/pydis_site/templates/content/base.html index 2fd721a3..8f6fd1d8 100644 --- a/pydis_site/templates/content/base.html +++ b/pydis_site/templates/content/base.html @@ -1,5 +1,6 @@ {% extends 'base/base.html' %} {% load static %} +{% load page_src %} {% block title %}{{ page_title }}{% endblock %} {% block head %} |