diff --git a/chat/static/index.css b/chat/static/index.css new file mode 100644 index 0000000..dfc0458 --- /dev/null +++ b/chat/static/index.css @@ -0,0 +1,3 @@ +body{ + background-color: red; +} \ No newline at end of file diff --git a/chat/templates/index.html b/chat/templates/index.html index 0021b03..f57d1a6 100644 --- a/chat/templates/index.html +++ b/chat/templates/index.html @@ -1,9 +1,11 @@ +{%load static %} Chat + {% block content %} diff --git a/chat_app/__pycache__/settings.cpython-311.pyc b/chat_app/__pycache__/settings.cpython-311.pyc index 1e31fcf..ae937b0 100644 Binary files a/chat_app/__pycache__/settings.cpython-311.pyc and b/chat_app/__pycache__/settings.cpython-311.pyc differ diff --git a/chat_app/settings.py b/chat_app/settings.py index e0cf605..8649774 100644 --- a/chat_app/settings.py +++ b/chat_app/settings.py @@ -125,4 +125,5 @@ DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField' -ASGI_APPLICATION = "chat_app.asgi.application" \ No newline at end of file +ASGI_APPLICATION = "chat_app.asgi.application" +