diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-09-05 16:59:42 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-09-05 16:59:42 +0200 |
commit | e80cc7dca251b644d78a58acfa9e677a011b78d9 (patch) | |
tree | c9846d837d567cd6b7f9287652dc2ba27d788703 /ishtar_common/templates/500.html | |
parent | a5f401e6f5dc5e5c30b56ecca8deac092bc1594e (diff) | |
download | Ishtar-e80cc7dca251b644d78a58acfa9e677a011b78d9.tar.bz2 Ishtar-e80cc7dca251b644d78a58acfa9e677a011b78d9.zip |
404/500: update static paths
Diffstat (limited to 'ishtar_common/templates/500.html')
-rw-r--r-- | ishtar_common/templates/500.html | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/ishtar_common/templates/500.html b/ishtar_common/templates/500.html index fb28f9169..f48c2393d 100644 --- a/ishtar_common/templates/500.html +++ b/ishtar_common/templates/500.html @@ -1,18 +1,19 @@ {% load i18n %}<!doctype html> <html lang="en"> <head> - <link rel="shortcut icon" href="{{STATIC_URL}}/media/images/favicon.png"> - <link rel="stylesheet" href="{{STATIC_URL}}bootstrap/bootstrap.css?ver={{VERSION}}"> - <link rel="stylesheet" href="{{STATIC_URL}}media/styles.css?ver={{VERSION}}"> + <link rel="shortcut icon" href="/static/media/images/favicon.png"> + <link rel="stylesheet" + href="/static/bootstrap/bootstrap.css?ver={{VERSION}}"> + <link rel="stylesheet" href="/static/media/styles.css?ver={{VERSION}}"> <title> {% block title %}Ishtar{% if APP_NAME %} - {{APP_NAME}}{%endif%}{% endblock %} </title> - <link rel="stylesheet" href="{{STATIC_URL}}/media/style.css?ver={{VERSION}}" /> + <link rel="stylesheet" href="/static/media/style.css?ver={{VERSION}}" /> </head> <body> <header class="navbar navbar-expand-lg navbar-dark bg-dark"> <a class="navbar-brand" href="/"> - <img src="{{STATIC_URL}}media/images/ishtar-blason.svg" + <img src="/static/media/images/ishtar-blason.svg" width="30" height="30" alt=""> </a> </header> |