Add vertical bar to titles, change title for 403

This commit is contained in:
igorkorenfeld 2023-05-09 10:27:59 -04:00
parent 3a1195b1a6
commit 0274f64439
No known key found for this signature in database
GPG key ID: 826947A4B867F659
4 changed files with 4 additions and 4 deletions

View file

@ -1,7 +1,7 @@
{% extends "base.html" %}
{% load i18n static %}
{% block title %}{% translate "Unauthorized" %}{% endblock %}
{% block title %}{% translate "Unauthorized | " %}{% endblock %}
{% block content %}
<main id="main-content" class="grid-container">

View file

@ -1,7 +1,7 @@
{% extends "base.html" %}
{% load i18n static %}
{% block title %}{% translate "Unauthorized" %}{% endblock %}
{% block title %}{% translate "Forbidden | " %}{% endblock %}
{% block content %}
<main id="main-content" class="grid-container">

View file

@ -1,7 +1,7 @@
{% extends "base.html" %}
{% load i18n static %}
{% block title %}{% translate "Page not found" %}{% endblock %}
{% block title %}{% translate "Page not found | " %}{% endblock %}
{% block content %}
<main id="main-content" class="grid-container">

View file

@ -1,7 +1,7 @@
{% extends "base.html" %}
{% load i18n static %}
{% block title %}{% translate "Server error" %}{% endblock %}
{% block title %}{% translate "Server error | " %}{% endblock %}
{% block content %}
<main id="main-content" class="grid-container">