├── .DS_Store ├── django_chatbot ├── .DS_Store ├── chatbot │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── admin.cpython-311.pyc │ │ ├── apps.cpython-311.pyc │ │ ├── models.cpython-311.pyc │ │ ├── urls.cpython-311.pyc │ │ └── views.cpython-311.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-311.pyc │ │ │ └── __init__.cpython-311.pyc │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── db.sqlite3 ├── django_chatbot │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── settings.cpython-311.pyc │ │ ├── urls.cpython-311.pyc │ │ └── wsgi.cpython-311.pyc │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── manage.py └── templates │ ├── base.html │ ├── chatbot.html │ ├── login.html │ └── register.html └── html-template ├── .DS_Store ├── base.html └── chatbot.html /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitokko/django-chatbot/3a4aa37a024ae4e8c34507635deb27275aa1daad/.DS_Store -------------------------------------------------------------------------------- /django_chatbot/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitokko/django-chatbot/3a4aa37a024ae4e8c34507635deb27275aa1daad/django_chatbot/.DS_Store -------------------------------------------------------------------------------- /django_chatbot/chatbot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitokko/django-chatbot/3a4aa37a024ae4e8c34507635deb27275aa1daad/django_chatbot/chatbot/__init__.py -------------------------------------------------------------------------------- /django_chatbot/chatbot/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitokko/django-chatbot/3a4aa37a024ae4e8c34507635deb27275aa1daad/django_chatbot/chatbot/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /django_chatbot/chatbot/__pycache__/admin.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitokko/django-chatbot/3a4aa37a024ae4e8c34507635deb27275aa1daad/django_chatbot/chatbot/__pycache__/admin.cpython-311.pyc -------------------------------------------------------------------------------- /django_chatbot/chatbot/__pycache__/apps.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitokko/django-chatbot/3a4aa37a024ae4e8c34507635deb27275aa1daad/django_chatbot/chatbot/__pycache__/apps.cpython-311.pyc -------------------------------------------------------------------------------- /django_chatbot/chatbot/__pycache__/models.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitokko/django-chatbot/3a4aa37a024ae4e8c34507635deb27275aa1daad/django_chatbot/chatbot/__pycache__/models.cpython-311.pyc -------------------------------------------------------------------------------- /django_chatbot/chatbot/__pycache__/urls.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitokko/django-chatbot/3a4aa37a024ae4e8c34507635deb27275aa1daad/django_chatbot/chatbot/__pycache__/urls.cpython-311.pyc -------------------------------------------------------------------------------- /django_chatbot/chatbot/__pycache__/views.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitokko/django-chatbot/3a4aa37a024ae4e8c34507635deb27275aa1daad/django_chatbot/chatbot/__pycache__/views.cpython-311.pyc -------------------------------------------------------------------------------- /django_chatbot/chatbot/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from .models import Chat 3 | 4 | # Register your models here. 5 | admin.site.register(Chat) -------------------------------------------------------------------------------- /django_chatbot/chatbot/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class ChatbotConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'chatbot' 7 | -------------------------------------------------------------------------------- /django_chatbot/chatbot/migrations/0001_initial.py: -------------------------------------------------------------------------------- 1 | # Generated by Django 4.1.7 on 2023-04-30 01:55 2 | 3 | from django.conf import settings 4 | from django.db import migrations, models 5 | import django.db.models.deletion 6 | 7 | 8 | class Migration(migrations.Migration): 9 | 10 | initial = True 11 | 12 | dependencies = [ 13 | migrations.swappable_dependency(settings.AUTH_USER_MODEL), 14 | ] 15 | 16 | operations = [ 17 | migrations.CreateModel( 18 | name='Chat', 19 | fields=[ 20 | ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), 21 | ('message', models.TextField()), 22 | ('response', models.TextField()), 23 | ('created_at', models.DateTimeField(auto_now_add=True)), 24 | ('user', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)), 25 | ], 26 | ), 27 | ] 28 | -------------------------------------------------------------------------------- /django_chatbot/chatbot/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitokko/django-chatbot/3a4aa37a024ae4e8c34507635deb27275aa1daad/django_chatbot/chatbot/migrations/__init__.py -------------------------------------------------------------------------------- /django_chatbot/chatbot/migrations/__pycache__/0001_initial.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitokko/django-chatbot/3a4aa37a024ae4e8c34507635deb27275aa1daad/django_chatbot/chatbot/migrations/__pycache__/0001_initial.cpython-311.pyc -------------------------------------------------------------------------------- /django_chatbot/chatbot/migrations/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitokko/django-chatbot/3a4aa37a024ae4e8c34507635deb27275aa1daad/django_chatbot/chatbot/migrations/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /django_chatbot/chatbot/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | from django.contrib.auth.models import User 3 | 4 | # Create your models here. 5 | class Chat(models.Model): 6 | user = models.ForeignKey(User, on_delete=models.CASCADE) 7 | message = models.TextField() 8 | response = models.TextField() 9 | created_at = models.DateTimeField(auto_now_add=True) 10 | 11 | def __str__(self): 12 | return f'{self.user.username}: {self.message}' -------------------------------------------------------------------------------- /django_chatbot/chatbot/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /django_chatbot/chatbot/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path 2 | from . import views 3 | 4 | urlpatterns = [ 5 | path('', views.chatbot, name='chatbot'), 6 | path('login', views.login, name='login'), 7 | path('register', views.register, name='register'), 8 | path('logout', views.logout, name='logout'), 9 | ] -------------------------------------------------------------------------------- /django_chatbot/chatbot/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render, redirect 2 | from django.http import JsonResponse 3 | import openai 4 | 5 | from django.contrib import auth 6 | from django.contrib.auth.models import User 7 | from .models import Chat 8 | 9 | from django.utils import timezone 10 | 11 | 12 | openai_api_key = 'input-your-key' 13 | openai.api_key = openai_api_key 14 | 15 | def ask_openai(message): 16 | response = openai.ChatCompletion.create( 17 | model = "gpt-4", 18 | messages=[ 19 | {"role": "system", "content": "You are an helpful assistant."}, 20 | {"role": "user", "content": message}, 21 | ] 22 | ) 23 | 24 | answer = response.choices[0].message.content.strip() 25 | return answer 26 | 27 | # Create your views here. 28 | def chatbot(request): 29 | chats = Chat.objects.filter(user=request.user) 30 | 31 | if request.method == 'POST': 32 | message = request.POST.get('message') 33 | response = ask_openai(message) 34 | 35 | chat = Chat(user=request.user, message=message, response=response, created_at=timezone.now()) 36 | chat.save() 37 | return JsonResponse({'message': message, 'response': response}) 38 | return render(request, 'chatbot.html', {'chats': chats}) 39 | 40 | 41 | def login(request): 42 | if request.method == 'POST': 43 | username = request.POST['username'] 44 | password = request.POST['password'] 45 | user = auth.authenticate(request, username=username, password=password) 46 | if user is not None: 47 | auth.login(request, user) 48 | return redirect('chatbot') 49 | else: 50 | error_message = 'Invalid username or password' 51 | return render(request, 'login.html', {'error_message': error_message}) 52 | else: 53 | return render(request, 'login.html') 54 | 55 | def register(request): 56 | if request.method == 'POST': 57 | username = request.POST['username'] 58 | email = request.POST['email'] 59 | password1 = request.POST['password1'] 60 | password2 = request.POST['password2'] 61 | 62 | if password1 == password2: 63 | try: 64 | user = User.objects.create_user(username, email, password1) 65 | user.save() 66 | auth.login(request, user) 67 | return redirect('chatbot') 68 | except: 69 | error_message = 'Error creating account' 70 | return render(request, 'register.html', {'error_message': error_message}) 71 | else: 72 | error_message = 'Password dont match' 73 | return render(request, 'register.html', {'error_message': error_message}) 74 | return render(request, 'register.html') 75 | 76 | def logout(request): 77 | auth.logout(request) 78 | return redirect('login') 79 | -------------------------------------------------------------------------------- /django_chatbot/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitokko/django-chatbot/3a4aa37a024ae4e8c34507635deb27275aa1daad/django_chatbot/db.sqlite3 -------------------------------------------------------------------------------- /django_chatbot/django_chatbot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitokko/django-chatbot/3a4aa37a024ae4e8c34507635deb27275aa1daad/django_chatbot/django_chatbot/__init__.py -------------------------------------------------------------------------------- /django_chatbot/django_chatbot/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitokko/django-chatbot/3a4aa37a024ae4e8c34507635deb27275aa1daad/django_chatbot/django_chatbot/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /django_chatbot/django_chatbot/__pycache__/settings.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitokko/django-chatbot/3a4aa37a024ae4e8c34507635deb27275aa1daad/django_chatbot/django_chatbot/__pycache__/settings.cpython-311.pyc -------------------------------------------------------------------------------- /django_chatbot/django_chatbot/__pycache__/urls.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitokko/django-chatbot/3a4aa37a024ae4e8c34507635deb27275aa1daad/django_chatbot/django_chatbot/__pycache__/urls.cpython-311.pyc -------------------------------------------------------------------------------- /django_chatbot/django_chatbot/__pycache__/wsgi.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitokko/django-chatbot/3a4aa37a024ae4e8c34507635deb27275aa1daad/django_chatbot/django_chatbot/__pycache__/wsgi.cpython-311.pyc -------------------------------------------------------------------------------- /django_chatbot/django_chatbot/asgi.py: -------------------------------------------------------------------------------- 1 | """ 2 | ASGI config for django_chatbot project. 3 | 4 | It exposes the ASGI callable as a module-level variable named ``application``. 5 | 6 | For more information on this file, see 7 | https://docs.djangoproject.com/en/4.1/howto/deployment/asgi/ 8 | """ 9 | 10 | import os 11 | 12 | from django.core.asgi import get_asgi_application 13 | 14 | os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_chatbot.settings') 15 | 16 | application = get_asgi_application() 17 | -------------------------------------------------------------------------------- /django_chatbot/django_chatbot/settings.py: -------------------------------------------------------------------------------- 1 | """ 2 | Django settings for django_chatbot project. 3 | 4 | Generated by 'django-admin startproject' using Django 4.1.7. 5 | 6 | For more information on this file, see 7 | https://docs.djangoproject.com/en/4.1/topics/settings/ 8 | 9 | For the full list of settings and their values, see 10 | https://docs.djangoproject.com/en/4.1/ref/settings/ 11 | """ 12 | 13 | from pathlib import Path 14 | 15 | # Build paths inside the project like this: BASE_DIR / 'subdir'. 16 | BASE_DIR = Path(__file__).resolve().parent.parent 17 | 18 | 19 | # Quick-start development settings - unsuitable for production 20 | # See https://docs.djangoproject.com/en/4.1/howto/deployment/checklist/ 21 | 22 | # SECURITY WARNING: keep the secret key used in production secret! 23 | SECRET_KEY = 'django-insecure-wsa9k4v_goql%t8rn@q4*5flo+xnnxa%8!^p2g(4g-=py==ur)' 24 | 25 | # SECURITY WARNING: don't run with debug turned on in production! 26 | DEBUG = True 27 | 28 | ALLOWED_HOSTS = [] 29 | 30 | 31 | # Application definition 32 | 33 | INSTALLED_APPS = [ 34 | 'django.contrib.admin', 35 | 'django.contrib.auth', 36 | 'django.contrib.contenttypes', 37 | 'django.contrib.sessions', 38 | 'django.contrib.messages', 39 | 'django.contrib.staticfiles', 40 | 'chatbot', 41 | ] 42 | 43 | MIDDLEWARE = [ 44 | 'django.middleware.security.SecurityMiddleware', 45 | 'django.contrib.sessions.middleware.SessionMiddleware', 46 | 'django.middleware.common.CommonMiddleware', 47 | 'django.middleware.csrf.CsrfViewMiddleware', 48 | 'django.contrib.auth.middleware.AuthenticationMiddleware', 49 | 'django.contrib.messages.middleware.MessageMiddleware', 50 | 'django.middleware.clickjacking.XFrameOptionsMiddleware', 51 | ] 52 | 53 | ROOT_URLCONF = 'django_chatbot.urls' 54 | 55 | TEMPLATES = [ 56 | { 57 | 'BACKEND': 'django.template.backends.django.DjangoTemplates', 58 | 'DIRS': [BASE_DIR, 'templates'], 59 | 'APP_DIRS': True, 60 | 'OPTIONS': { 61 | 'context_processors': [ 62 | 'django.template.context_processors.debug', 63 | 'django.template.context_processors.request', 64 | 'django.contrib.auth.context_processors.auth', 65 | 'django.contrib.messages.context_processors.messages', 66 | ], 67 | }, 68 | }, 69 | ] 70 | 71 | WSGI_APPLICATION = 'django_chatbot.wsgi.application' 72 | 73 | 74 | # Database 75 | # https://docs.djangoproject.com/en/4.1/ref/settings/#databases 76 | 77 | DATABASES = { 78 | 'default': { 79 | 'ENGINE': 'django.db.backends.sqlite3', 80 | 'NAME': BASE_DIR / 'db.sqlite3', 81 | } 82 | } 83 | 84 | 85 | # Password validation 86 | # https://docs.djangoproject.com/en/4.1/ref/settings/#auth-password-validators 87 | 88 | AUTH_PASSWORD_VALIDATORS = [ 89 | { 90 | 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', 91 | }, 92 | { 93 | 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', 94 | }, 95 | { 96 | 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', 97 | }, 98 | { 99 | 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', 100 | }, 101 | ] 102 | 103 | 104 | # Internationalization 105 | # https://docs.djangoproject.com/en/4.1/topics/i18n/ 106 | 107 | LANGUAGE_CODE = 'en-us' 108 | 109 | TIME_ZONE = 'UTC' 110 | 111 | USE_I18N = True 112 | 113 | USE_TZ = True 114 | 115 | 116 | # Static files (CSS, JavaScript, Images) 117 | # https://docs.djangoproject.com/en/4.1/howto/static-files/ 118 | 119 | STATIC_URL = 'static/' 120 | 121 | # Default primary key field type 122 | # https://docs.djangoproject.com/en/4.1/ref/settings/#default-auto-field 123 | 124 | DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField' 125 | -------------------------------------------------------------------------------- /django_chatbot/django_chatbot/urls.py: -------------------------------------------------------------------------------- 1 | """django_chatbot URL Configuration 2 | 3 | The `urlpatterns` list routes URLs to views. For more information please see: 4 | https://docs.djangoproject.com/en/4.1/topics/http/urls/ 5 | Examples: 6 | Function views 7 | 1. Add an import: from my_app import views 8 | 2. Add a URL to urlpatterns: path('', views.home, name='home') 9 | Class-based views 10 | 1. Add an import: from other_app.views import Home 11 | 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home') 12 | Including another URLconf 13 | 1. Import the include() function: from django.urls import include, path 14 | 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) 15 | """ 16 | from django.contrib import admin 17 | from django.urls import path, include 18 | 19 | urlpatterns = [ 20 | path('admin/', admin.site.urls), 21 | path('', include('chatbot.urls')) 22 | ] 23 | -------------------------------------------------------------------------------- /django_chatbot/django_chatbot/wsgi.py: -------------------------------------------------------------------------------- 1 | """ 2 | WSGI config for django_chatbot project. 3 | 4 | It exposes the WSGI callable as a module-level variable named ``application``. 5 | 6 | For more information on this file, see 7 | https://docs.djangoproject.com/en/4.1/howto/deployment/wsgi/ 8 | """ 9 | 10 | import os 11 | 12 | from django.core.wsgi import get_wsgi_application 13 | 14 | os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_chatbot.settings') 15 | 16 | application = get_wsgi_application() 17 | -------------------------------------------------------------------------------- /django_chatbot/manage.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | """Django's command-line utility for administrative tasks.""" 3 | import os 4 | import sys 5 | 6 | 7 | def main(): 8 | """Run administrative tasks.""" 9 | os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_chatbot.settings') 10 | try: 11 | from django.core.management import execute_from_command_line 12 | except ImportError as exc: 13 | raise ImportError( 14 | "Couldn't import Django. Are you sure it's installed and " 15 | "available on your PYTHONPATH environment variable? Did you " 16 | "forget to activate a virtual environment?" 17 | ) from exc 18 | execute_from_command_line(sys.argv) 19 | 20 | 21 | if __name__ == '__main__': 22 | main() 23 | -------------------------------------------------------------------------------- /django_chatbot/templates/base.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | {% block title %}{% endblock %} 7 | 8 | {% block styles %}{% endblock %} 9 | 10 | 11 | {% block content %}{% endblock %} 12 | 13 | 14 | 15 | {% block scripts %}{% endblock %} 16 | 17 | 18 | -------------------------------------------------------------------------------- /django_chatbot/templates/chatbot.html: -------------------------------------------------------------------------------- 1 | {% extends 'base.html' %} 2 | 3 | {% block styles %} 4 | 64 | {% endblock %} 65 | 66 | 67 | {% block content %} 68 |
69 |
70 |
Chat
71 | {% if user.is_authenticated %} 72 |
Welcome, {{user.username}} Logout
73 | {% else %} 74 | 75 | {% endif %} 76 |
77 | 78 |
    79 | 80 | 90 | 91 | {% for chat in chats %} 92 | {% if chat.user == request.user %} 93 | 94 |
  • 95 |
    96 |
    97 | You 98 |
    99 |
    100 | {{chat.message}} 101 |
    102 |
    103 |
  • 104 | 105 |
  • 106 |
    107 |
    108 | AI Chatbot 109 |
    110 |
    111 | {{chat.response}} 112 |
    113 |
    114 |
  • 115 | 116 | {% endif %} 117 | {% endfor %} 118 | 119 |
120 | 121 |
122 |

123 |

124 |

125 |
126 |
127 | {%csrf_token%} 128 |
129 | 130 |
131 | 132 |
133 |
134 |
135 |
136 | 137 | 193 | {% endblock %} 194 | -------------------------------------------------------------------------------- /django_chatbot/templates/login.html: -------------------------------------------------------------------------------- 1 | {% extends 'base.html' %} 2 | 3 | {% block title %}Login{% endblock %} 4 | 5 | {% block styles %} 6 | 69 | {% endblock %} 70 | 71 | {% block content %} 72 |
73 |
74 |
Login
75 |
76 | {% if error_message %} 77 | 78 | {% endif %} 79 |
80 | {% csrf_token %} 81 |
82 | 83 | 84 |
85 |
86 | 87 | 88 |
89 | 90 |
91 |
92 |
93 |
94 | {% endblock %} 95 | -------------------------------------------------------------------------------- /django_chatbot/templates/register.html: -------------------------------------------------------------------------------- 1 | {% extends 'base.html' %} 2 | 3 | {% block title %}Register{% endblock %} 4 | 5 | {% block styles %} 6 | 69 | {% endblock %} 70 | 71 | {% block content %} 72 |
73 |
74 |
Register
75 |
76 | {% if error_message %} 77 | 78 | {% endif %} 79 |
80 | {% csrf_token %} 81 |
82 | 83 | 84 |
85 |
86 | 87 | 88 |
89 |
90 | 91 | 92 |
93 |
94 | 95 | 96 |
97 | 98 |
99 |
100 |
101 |
102 | {% endblock %} 103 | -------------------------------------------------------------------------------- /html-template/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitokko/django-chatbot/3a4aa37a024ae4e8c34507635deb27275aa1daad/html-template/.DS_Store -------------------------------------------------------------------------------- /html-template/base.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | {% block title %}{% endblock %} 7 | 8 | {% block styles %}{% endblock %} 9 | 10 | 11 | {% block content %}{% endblock %} 12 | 13 | 14 | 15 | {% block scripts %}{% endblock %} 16 | 17 | 18 | -------------------------------------------------------------------------------- /html-template/chatbot.html: -------------------------------------------------------------------------------- 1 | {% extends 'base.html' %} 2 | 3 | {% block styles %} 4 | 64 | {% endblock %} 65 | 66 | 67 | {% block content %} 68 |
69 |
70 |
Chat
71 |
72 | 73 |
    74 | 75 |
  • 76 |
    77 |
    78 | AI Chatbot 79 |
    80 |
    81 | Hi, I am your AI Chatbot, you can ask me anything. 82 |
    83 |
    84 |
  • 85 |
86 | 87 |
88 |

89 |

90 |

91 |
92 |
93 | {%csrf_token%} 94 |
95 | 96 |
97 | 98 |
99 |
100 |
101 |
102 | 103 | 104 | {% endblock %} 105 | --------------------------------------------------------------------------------