Added favicons

This commit is contained in:
ayxan 2023-01-30 00:14:24 +04:00
parent 964ee902d7
commit 7bb7bf3929
17 changed files with 35 additions and 0 deletions

View File

@ -1,7 +1,11 @@
{% extends 'base.html' %}
{% load crispy_forms_tags %}
{% load static %}
{% block favicon %}
<link rel="shortcut icon" href="{% static 'icons/favicons/password-change.ico' %}" type="image/x-icon">
{% endblock favicon %}
{% block title %} Change Password {% endblock title %}
{% block content %}

View File

@ -1,7 +1,11 @@
{% extends 'base.html' %}
{% load crispy_forms_tags %}
{% load static %}
{% block favicon %}
<link rel="shortcut icon" href="{% static 'icons/favicons/login.ico' %}" type="image/x-icon">
{% endblock favicon %}
{% block title %} Login {% endblock title %}
{% block content %}

View File

@ -1,6 +1,9 @@
{% extends 'base.html' %}
{% load static %}
{% block favicon %}
<link rel="shortcut icon" href="{% static 'icons/favicons/profile.ico' %}" type="image/x-icon">
{% endblock favicon %}
{% block title %} Profile {% endblock title %}
{% block content %}

View File

@ -1,7 +1,11 @@
{% extends 'base.html' %}
{% load crispy_forms_tags %}
{% load static %}
{% block favicon %}
<link rel="shortcut icon" href="{% static 'icons/favicons/profile-edit.ico' %}" type="image/x-icon">
{% endblock favicon %}
{% block title %} Edit Profile {% endblock title %}
{% block content %}

View File

@ -1,7 +1,11 @@
{% extends 'base.html' %}
{% load crispy_forms_tags %}
{% load static %}
{% block favicon %}
<link rel="shortcut icon" href="{% static 'icons/favicons/login.ico' %}" type="image/x-icon">
{% endblock favicon %}
{% block title %} Signup {% endblock title %}
{% block content %}

View File

@ -1,6 +1,11 @@
{% extends 'base.html' %}
{% load crispy_forms_tags %}
{% load static %}
{% block favicon %}
<link rel="shortcut icon" href="{% static 'icons/favicons/add-series.ico' %}" type="image/x-icon">
{% endblock favicon %}
{% block title %} Add Series {% endblock title %}
{% block content %}

View File

@ -1,8 +1,12 @@
{% extends 'base.html' %}
{% load crispy_forms_tags %}
{% load static %}
{% block favicon %}
<link rel="shortcut icon" href="{% static 'icons/favicons/series-delete.ico' %}" type="image/x-icon">
{% endblock favicon %}
{% block title %} Deletion Confirmation {% endblock title %}
{% block content %}

View File

@ -1,7 +1,11 @@
{% extends 'base.html' %}
{% load crispy_forms_tags %}
{% load static %}
{% block favicon %}
<link rel="shortcut icon" href="{% static 'icons/favicons/edit-series.ico' %}" type="image/x-icon">
{% endblock favicon %}
{% block title %} Update Series {% endblock title %}
{% block content %}

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -11,6 +11,9 @@
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="{% static 'css/bootstrap.min.css' %}">
{% block favicon %}
<link rel="shortcut icon" href="{% static 'icons/favicons/homepage.ico' %}" type="image/x-icon">
{% endblock favicon %}
<title>{% block title %}{% endblock title %}</title>
</head>
<body>