favicon
This commit is contained in:
parent
6acc065c0f
commit
e638513fdb
5 changed files with 6 additions and 1 deletions
BIN
assets/img/favicon.ico
Normal file
BIN
assets/img/favicon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.4 KiB |
|
|
@ -1,5 +1,7 @@
|
||||||
from django.contrib import admin
|
from django.contrib import admin
|
||||||
from django.urls import path, include
|
from django.urls import path, include
|
||||||
|
from django.contrib.staticfiles.storage import staticfiles_storage
|
||||||
|
from django.views.generic.base import RedirectView
|
||||||
|
|
||||||
from web.views import (
|
from web.views import (
|
||||||
signup,
|
signup,
|
||||||
|
|
|
||||||
BIN
static/img/favicon.ico
Normal file
BIN
static/img/favicon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.4 KiB |
|
|
@ -5,6 +5,9 @@
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<title>Christians of the Internet</title>
|
<title>Christians of the Internet</title>
|
||||||
|
<link rel="shortcut icon"
|
||||||
|
type="image/png"
|
||||||
|
href="{% static 'img/favicon.ico' %}" />
|
||||||
{% block head %}{% endblock %}
|
{% block head %}{% endblock %}
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
|
||||||
|
|
@ -63,7 +63,7 @@ def signup(request):
|
||||||
|
|
||||||
send_email(
|
send_email(
|
||||||
subject='New User Sign Up Alert',
|
subject='New User Sign Up Alert',
|
||||||
message=f'A new user has signed up for the webring, please review the user in the admin portal! \n\n ID: {user.id}, EMAIL: {user.email}, USERNAME: {user.username}'
|
message=f'A new user has signed up for the webring, please review the user in the admin portal! \n\n ID: {user.id}, EMAIL: {user.email}, USERNAME: {user.username} \n\n https://members.christian-webring.org/accounts/user_management/ '
|
||||||
)
|
)
|
||||||
|
|
||||||
send_email(
|
send_email(
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue