8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acd2dd9 commit b2b3a10Copy full SHA for b2b3a10
django_socketio/example_project/chat/templates/base.html
@@ -1,10 +1,12 @@
1
+{% load static %}
2
+
3
<!doctype html>
4
<html lang="en">
5
<head>
6
7
<meta charset="utf-8">
8
<title>{% block title %}Chat{% endblock %}</title>
- <link rel="stylesheet" href="{{ STATIC_URL }}css/chat.css">
9
+ <link rel="stylesheet" href="{% static 'css/chat.css' %}">
10
{% block extra_css %}{% endblock %}
11
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
12
<script>
0 commit comments