ali.xwx.moe/templates/404.html

28 lines
772 B
HTML
Raw Permalink Normal View History

2024-07-17 18:44:33 -05:00
{% extends "base.html" %}
{% load i18n %}
{% load static %}
{% block breadcrumbs %}
<li><a href="{% url 'home' %}">{% trans "Page Not Found" %}</a></li>
{% endblock %}
{% block content %}
<div class="container">
<h2>{% trans "Page Not Found" %}</h2>
<p>
{% trans "The page you are looking for was not found." %}
{% trans "The project you are looking for does not exist or is not publicly available." %}
</p>
<img src="{% static "x_x/404.png" %}">
{% if not user.is_authenticated %}
<a href="{% url 'login' %}" class="btn btn-primary">{% trans "Sign in" %}</a>
{% endif %}
<a href="{% url 'home' %}" class="btn btn-primary">{% trans "Dashboard" %}</a>
<a href="{% url 'projects' %}" class="btn btn-primary">{% trans "Browse all projects" %}</a>
</div>
{% endblock %}