diff options
| author | Bobby <[email protected]> | 2025-12-24 12:44:33 +0530 |
|---|---|---|
| committer | Bobby <[email protected]> | 2025-12-24 12:44:33 +0530 |
| commit | 81ab367f440d6f85297b2013d0c1aa57fda7e9cd (patch) | |
| tree | 823a55ba7416d6df86e88bfdfad7925904c0c565 /templates/error.django | |
| parent | 62cf64c4216a527334d4b9c312d144aaeec27ff9 (diff) | |
| download | lain-81ab367f440d6f85297b2013d0c1aa57fda7e9cd.tar.xz lain-81ab367f440d6f85297b2013d0c1aa57fda7e9cd.zip | |
refactor: Exclude virtual IMAP folders from processing and standardize template formatting.
Diffstat (limited to 'templates/error.django')
| -rw-r--r-- | templates/error.django | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/templates/error.django b/templates/error.django index 30700a4..b7473ae 100644 --- a/templates/error.django +++ b/templates/error.django @@ -1,9 +1,9 @@ {% extends 'layouts/generic.django' %} {% block content %} -<div class="error-page"> - <div class="error-container"> - <h1>{{ ErrorTitle }}</h1> - <p>{{ ErrorMessage }}</p> - <a href="{% url 'auth.login' %}">Go back home</a> + <div class="error-page"> + <div class="error-container"> + <h1>{{ ErrorTitle }}</h1> + <p>{{ ErrorMessage }}</p> + <a href="{% url 'auth.login' %}">Go back home</a> + </div> </div> -</div> {% endblock %} |
