From 661a0cb1f93f439c2db0563673d585f383350ce3 Mon Sep 17 00:00:00 2001 From: Piotr Gawron <piotr.gawron@uni.lu> Date: Tue, 12 Oct 2021 15:16:29 +0200 Subject: [PATCH] don't fetch favicon - we don't have it --- CHANGELOG | 1 + smash/web/templates/_base.html | 2 ++ 2 files changed, 3 insertions(+) diff --git a/CHANGELOG b/CHANGELOG index 26c88023..9801a831 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -36,6 +36,7 @@ smasch (1.1.0~alpha.0-1) unstable; urgency=low * bug fix: printing mail template failed for general appointments (#435) * bug fix: import of csv with subjects did not work with custom fields for subjects that existed in db (#415) + * bug fix: prevent fetching favicon - we don't have it (#304) -- Piotr Gawron <piotr.gawron@uni.lu> Thu, 25 Feb 2021 17:00:00 +0200 diff --git a/smash/web/templates/_base.html b/smash/web/templates/_base.html index 1f9f9edd..aef19b73 100644 --- a/smash/web/templates/_base.html +++ b/smash/web/templates/_base.html @@ -6,6 +6,8 @@ <title>{% block title %}Scheduling system{% endblock title %}</title> <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport"> + <link rel="icon" type="image/png" href="data:image/png;base64,iVBORw0KGgo="> + {% block styles %} <!-- Bootstrap 3.3.6 --> <link rel="stylesheet" href="{% static 'npm/bootstrap/dist/css/bootstrap.min.css' %}"> -- GitLab