diff options
author | 2021-06-08 00:26:40 +0200 | |
---|---|---|
committer | 2021-06-08 00:29:59 +0200 | |
commit | c998d475440cf4819bad7ebc3ed19f31ce82baf4 (patch) | |
tree | bfdeba9a483ebb7646171c79f5b259c27f3d17dd /pydis_site/templates/home/index.html | |
parent | Fix `content` app tests not running on macOS (#519) (diff) |
Move subdomains to query paths.
In more detail:
- Use Django URL namespaces (e.g. `api:bot:infractions`) instead of
`django_hosts` host argument.
- Update the hosts file setup documentation to remove subdomain entries.
- Update the hosts file setup documentation to mention that the entry of
`pythondiscord.local` is not required and mainly for convenience.
- Rename the `APISubdomainTestCase` to the more fitting
`AuthenticatedAPITestCase`, as authentication is all that is left that the
class is doing.
- Drop dependency to `django_hosts`.
Diffstat (limited to 'pydis_site/templates/home/index.html')
-rw-r--r-- | pydis_site/templates/home/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pydis_site/templates/home/index.html b/pydis_site/templates/home/index.html index 18f6b77b..cbede038 100644 --- a/pydis_site/templates/home/index.html +++ b/pydis_site/templates/home/index.html @@ -17,7 +17,7 @@ <div class="message-body"> Thanks to all our members for helping us create this friendly and helpful community! <br><br> - As a nice treat, we've created a <a href="{% url 'timeline' %}">Timeline page</a> for people + As a nice treat, we've created a <a href="{% url 'home:timeline' %}">Timeline page</a> for people to discover the events that made our community what it is today. Be sure to check it out! </div> </section> @@ -108,7 +108,7 @@ </p> <div class="buttons are-large is-centered"> - <a href="{% url 'timeline' %}" class="button is-primary"> + <a href="{% url 'home:timeline' %}" class="button is-primary"> <span>Check it out!</span> <span class="icon"> <i class="fas fa-arrow-right"></i> |