Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Port threads to Django syntax #1432

Merged
merged 10 commits into from
Oct 16, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions project/core/templates/landing.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% extends "base.html" %}
{% load static %}
{% load i18n %}
{% load i18n %}

<!-- Landing Page -->
{% block extra_css %}
Expand Down Expand Up @@ -146,7 +146,7 @@ <h3 class="center"><i class="small material-icons yellow-text text-darken-2">war
<h4 class="center ampersand">&</h4>
</div>
<div class="col s12 m5 center">
<a class="btn btn-large " href="support_us">{% trans "Support Us" %}</a>
<a class="btn btn-large " href="{% url 'support-us' %}">{% trans "Support Us" %}</a>
</div>
</div>
</div>
Expand Down
Loading