Skip to content

Commit bcdc6e0

Browse files
committed
Fixed wrong url
1 parent 12f619b commit bcdc6e0

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/templates/http_errors/400.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<section class="section error-404 min-vh-100 d-flex flex-column align-items-center justify-content-center">
99
<h1>400</h1>
1010
<h2>Sorry, the request could not be understood by the server due to malformed syntax.</h2>
11-
<a class="btn" href="{% url 'signals' %}">Back to home</a>
11+
<a class="btn" href="{% url 'indicatorsets' %}">Back to home</a>
1212
</section>
1313

1414
</div>

src/templates/http_errors/403.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<section class="section error-404 min-vh-100 d-flex flex-column align-items-center justify-content-center">
88
<h1>403</h1>
99
<h2>You don't have permission to access this resource.</h2>
10-
<a class="btn" href="{% url 'signals' %}">Back to home</a>
10+
<a class="btn" href="{% url 'indicatorsets' %}">Back to home</a>
1111
</section>
1212
</div>
1313
{% endblock %}

src/templates/http_errors/404.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<section class="section error-404 min-vh-100 d-flex flex-column align-items-center justify-content-center">
1010
<h1>404</h1>
1111
<h2>Not Found</h2>
12-
<a class="btn" href="{% url 'signals' %}">Back to home</a>
12+
<a class="btn" href="{% url 'indicatorsets' %}">Back to home</a>
1313
</section>
1414
</div>
1515
{% endblock %}

src/templates/http_errors/500.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<section class="section error-404 min-vh-100 d-flex flex-column align-items-center justify-content-center">
88
<h1>500</h1>
99
<h2>Internal Server Error.</h2>
10-
<a class="btn" href="{% url 'signals' %}">Back to home</a>
10+
<a class="btn" href="{% url 'indicatorsets' %}">Back to home</a>
1111
</section>
1212
</div>
1313
{% endblock %}

0 commit comments

Comments
 (0)