diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/assumptions.txt b/Domains/FullStack/MiniProjects/Django Simple Web Cart/assumptions.txt
new file mode 100644
index 00000000..ff8655ec
--- /dev/null
+++ b/Domains/FullStack/MiniProjects/Django Simple Web Cart/assumptions.txt
@@ -0,0 +1,7 @@
+Disclaimer: Mini project made from fresh download Django framework, not modified ex-personal project
+
+1. The product count is fixed: 3 products
+2. Summary Page converted to popup panel.
+3. History Page shown by loggedIn User.
+4. No need to make "add to cart button", it alrdy automatically added to cart when user input the product count
+5. Newly created user able to place order
diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/db.sqlite3 b/Domains/FullStack/MiniProjects/Django Simple Web Cart/db.sqlite3
new file mode 100644
index 00000000..b4a1cb76
Binary files /dev/null and b/Domains/FullStack/MiniProjects/Django Simple Web Cart/db.sqlite3 differ
diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/erd.png b/Domains/FullStack/MiniProjects/Django Simple Web Cart/erd.png
new file mode 100644
index 00000000..4b024531
Binary files /dev/null and b/Domains/FullStack/MiniProjects/Django Simple Web Cart/erd.png differ
diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/logins.txt b/Domains/FullStack/MiniProjects/Django Simple Web Cart/logins.txt
new file mode 100644
index 00000000..a1eba335
--- /dev/null
+++ b/Domains/FullStack/MiniProjects/Django Simple Web Cart/logins.txt
@@ -0,0 +1,10 @@
+
+===Super User===
+username: admin_pcs
+password: pcs
+
+===User===
+username: user_pcs
+password: pcs12345
+
+You can create new use by logging in as admin at the admin page (http://localhost:8000/admin)
diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/manage.py b/Domains/FullStack/MiniProjects/Django Simple Web Cart/manage.py
new file mode 100755
index 00000000..d7ec9f67
--- /dev/null
+++ b/Domains/FullStack/MiniProjects/Django Simple Web Cart/manage.py
@@ -0,0 +1,22 @@
+#!/usr/bin/env python
+"""Django's command-line utility for administrative tasks."""
+import os
+import sys
+
+
+def main():
+ """Run administrative tasks."""
+ os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'pcs.settings')
+ try:
+ from django.core.management import execute_from_command_line
+ except ImportError as exc:
+ raise ImportError(
+ "Couldn't import Django. Are you sure it's installed and "
+ "available on your PYTHONPATH environment variable? Did you "
+ "forget to activate a virtual environment?"
+ ) from exc
+ execute_from_command_line(sys.argv)
+
+
+if __name__ == '__main__':
+ main()
diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/pcs technical test - english.docx b/Domains/FullStack/MiniProjects/Django Simple Web Cart/pcs technical test - english.docx
new file mode 100644
index 00000000..d2cb6b7a
Binary files /dev/null and b/Domains/FullStack/MiniProjects/Django Simple Web Cart/pcs technical test - english.docx differ
diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/pcs/__init__.py b/Domains/FullStack/MiniProjects/Django Simple Web Cart/pcs/__init__.py
new file mode 100644
index 00000000..e69de29b
diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/pcs/__pycache__/__init__.cpython-36.pyc b/Domains/FullStack/MiniProjects/Django Simple Web Cart/pcs/__pycache__/__init__.cpython-36.pyc
new file mode 100644
index 00000000..b4ca7803
Binary files /dev/null and b/Domains/FullStack/MiniProjects/Django Simple Web Cart/pcs/__pycache__/__init__.cpython-36.pyc differ
diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/pcs/__pycache__/settings.cpython-36.pyc b/Domains/FullStack/MiniProjects/Django Simple Web Cart/pcs/__pycache__/settings.cpython-36.pyc
new file mode 100644
index 00000000..1b74d2ec
Binary files /dev/null and b/Domains/FullStack/MiniProjects/Django Simple Web Cart/pcs/__pycache__/settings.cpython-36.pyc differ
diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/pcs/__pycache__/urls.cpython-36.pyc b/Domains/FullStack/MiniProjects/Django Simple Web Cart/pcs/__pycache__/urls.cpython-36.pyc
new file mode 100644
index 00000000..a7df02b0
Binary files /dev/null and b/Domains/FullStack/MiniProjects/Django Simple Web Cart/pcs/__pycache__/urls.cpython-36.pyc differ
diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/pcs/__pycache__/wsgi.cpython-36.pyc b/Domains/FullStack/MiniProjects/Django Simple Web Cart/pcs/__pycache__/wsgi.cpython-36.pyc
new file mode 100644
index 00000000..d8d86207
Binary files /dev/null and b/Domains/FullStack/MiniProjects/Django Simple Web Cart/pcs/__pycache__/wsgi.cpython-36.pyc differ
diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/pcs/asgi.py b/Domains/FullStack/MiniProjects/Django Simple Web Cart/pcs/asgi.py
new file mode 100644
index 00000000..c74466c5
--- /dev/null
+++ b/Domains/FullStack/MiniProjects/Django Simple Web Cart/pcs/asgi.py
@@ -0,0 +1,16 @@
+"""
+ASGI config for pcs project.
+
+It exposes the ASGI callable as a module-level variable named ``application``.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/3.2/howto/deployment/asgi/
+"""
+
+import os
+
+from django.core.asgi import get_asgi_application
+
+os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'pcs.settings')
+
+application = get_asgi_application()
diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/pcs/settings.py b/Domains/FullStack/MiniProjects/Django Simple Web Cart/pcs/settings.py
new file mode 100644
index 00000000..869c1267
--- /dev/null
+++ b/Domains/FullStack/MiniProjects/Django Simple Web Cart/pcs/settings.py
@@ -0,0 +1,132 @@
+"""
+Django settings for pcs project.
+
+Generated by 'django-admin startproject' using Django 3.2.19.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/3.2/topics/settings/
+
+For the full list of settings and their values, see
+https://docs.djangoproject.com/en/3.2/ref/settings/
+"""
+
+from pathlib import Path
+
+# Build paths inside the project like this: BASE_DIR / 'subdir'.
+BASE_DIR = Path(__file__).resolve().parent.parent
+
+
+# Quick-start development settings - unsuitable for production
+# See https://docs.djangoproject.com/en/3.2/howto/deployment/checklist/
+
+# SECURITY WARNING: keep the secret key used in production secret!
+SECRET_KEY = 'django-insecure-=beda81z$#x$f!zo=wnd9wvq39aa#+7c5abbpxtp0vmg-a2jjf'
+
+# SECURITY WARNING: don't run with debug turned on in production!
+DEBUG = True
+
+ALLOWED_HOSTS = []
+
+
+# Application definition
+
+INSTALLED_APPS = [
+ 'django.contrib.admin',
+ 'django.contrib.auth',
+ 'django.contrib.contenttypes',
+ 'django.contrib.sessions',
+ 'django.contrib.messages',
+ 'django.contrib.staticfiles',
+ 'product',
+ 'bootstrap5'
+]
+
+MIDDLEWARE = [
+ 'django.middleware.security.SecurityMiddleware',
+ 'django.contrib.sessions.middleware.SessionMiddleware',
+ 'django.middleware.common.CommonMiddleware',
+ 'django.middleware.csrf.CsrfViewMiddleware',
+ 'django.contrib.auth.middleware.AuthenticationMiddleware',
+ 'django.contrib.messages.middleware.MessageMiddleware',
+ 'django.middleware.clickjacking.XFrameOptionsMiddleware',
+]
+
+ROOT_URLCONF = 'pcs.urls'
+
+TEMPLATES = [
+ {
+ 'BACKEND': 'django.template.backends.django.DjangoTemplates',
+ 'DIRS': [],
+ 'APP_DIRS': True,
+ 'OPTIONS': {
+ 'context_processors': [
+ 'django.template.context_processors.debug',
+ 'django.template.context_processors.request',
+ 'django.contrib.auth.context_processors.auth',
+ 'django.contrib.messages.context_processors.messages',
+ ],
+ },
+ },
+]
+
+WSGI_APPLICATION = 'pcs.wsgi.application'
+LOGIN_REDIRECT_URL = '/product/'
+
+# Database
+# https://docs.djangoproject.com/en/3.2/ref/settings/#databases
+
+DATABASES = {
+ 'default': {
+ 'ENGINE': 'django.db.backends.sqlite3',
+ 'NAME': BASE_DIR / 'db.sqlite3',
+ }
+}
+
+
+# Password validation
+# https://docs.djangoproject.com/en/3.2/ref/settings/#auth-password-validators
+
+AUTH_PASSWORD_VALIDATORS = [
+ {
+ 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
+ },
+]
+
+
+# Internationalization
+# https://docs.djangoproject.com/en/3.2/topics/i18n/
+
+LANGUAGE_CODE = 'en-us'
+
+TIME_ZONE = 'Asia/Jakarta'
+
+USE_I18N = True
+
+USE_L10N = True
+
+USE_TZ = True
+
+
+# Static files (CSS, JavaScript, Images)
+# https://docs.djangoproject.com/en/3.2/howto/static-files/
+
+STATIC_URL = '/static/'
+
+# Default primary key field type
+# https://docs.djangoproject.com/en/3.2/ref/settings/#default-auto-field
+
+DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
+CACHES = {
+ "default": {
+ "BACKEND": "django.core.cache.backends.dummy.DummyCache",
+ }
+}
diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/pcs/urls.py b/Domains/FullStack/MiniProjects/Django Simple Web Cart/pcs/urls.py
new file mode 100644
index 00000000..1ac5eb25
--- /dev/null
+++ b/Domains/FullStack/MiniProjects/Django Simple Web Cart/pcs/urls.py
@@ -0,0 +1,28 @@
+"""pcs URL Configuration
+
+The `urlpatterns` list routes URLs to views. For more information please see:
+ https://docs.djangoproject.com/en/3.2/topics/http/urls/
+Examples:
+Function views
+ 1. Add an import: from my_app import views
+ 2. Add a URL to urlpatterns: path('', views.home, name='home')
+Class-based views
+ 1. Add an import: from other_app.views import Home
+ 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
+Including another URLconf
+ 1. Import the include() function: from django.urls import include, path
+ 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
+"""
+from django.contrib import admin
+from django.urls import path
+from product import views
+
+urlpatterns = [
+ path('admin/', admin.site.urls),
+ path('login/', views.LoginInterfaceView.as_view(), name="login"),
+ path('logout/', views.LogoutInterfaceView.as_view(), name="logout"),
+ path('product/', views.product, name='product'),
+ path('checkout/', views.checkout, name='checkout'),
+ path('history/', views.history, name='history'),
+ path('', views.home, name='home'),
+]
diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/pcs/wsgi.py b/Domains/FullStack/MiniProjects/Django Simple Web Cart/pcs/wsgi.py
new file mode 100644
index 00000000..1add8503
--- /dev/null
+++ b/Domains/FullStack/MiniProjects/Django Simple Web Cart/pcs/wsgi.py
@@ -0,0 +1,16 @@
+"""
+WSGI config for pcs project.
+
+It exposes the WSGI callable as a module-level variable named ``application``.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/3.2/howto/deployment/wsgi/
+"""
+
+import os
+
+from django.core.wsgi import get_wsgi_application
+
+os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'pcs.settings')
+
+application = get_wsgi_application()
diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/__init__.py b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/__init__.py
new file mode 100644
index 00000000..e69de29b
diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/__pycache__/__init__.cpython-36.pyc b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/__pycache__/__init__.cpython-36.pyc
new file mode 100644
index 00000000..a3fb06ad
Binary files /dev/null and b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/__pycache__/__init__.cpython-36.pyc differ
diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/__pycache__/admin.cpython-36.pyc b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/__pycache__/admin.cpython-36.pyc
new file mode 100644
index 00000000..2256a0e4
Binary files /dev/null and b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/__pycache__/admin.cpython-36.pyc differ
diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/__pycache__/apps.cpython-36.pyc b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/__pycache__/apps.cpython-36.pyc
new file mode 100644
index 00000000..06b1857b
Binary files /dev/null and b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/__pycache__/apps.cpython-36.pyc differ
diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/__pycache__/models.cpython-36.pyc b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/__pycache__/models.cpython-36.pyc
new file mode 100644
index 00000000..6f24c992
Binary files /dev/null and b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/__pycache__/models.cpython-36.pyc differ
diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/__pycache__/views.cpython-36.pyc b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/__pycache__/views.cpython-36.pyc
new file mode 100644
index 00000000..a659b55b
Binary files /dev/null and b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/__pycache__/views.cpython-36.pyc differ
diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/admin.py b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/admin.py
new file mode 100644
index 00000000..8c38f3f3
--- /dev/null
+++ b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/admin.py
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/apps.py b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/apps.py
new file mode 100644
index 00000000..235a3339
--- /dev/null
+++ b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/apps.py
@@ -0,0 +1,6 @@
+from django.apps import AppConfig
+
+
+class ProductConfig(AppConfig):
+ default_auto_field = 'django.db.models.BigAutoField'
+ name = 'product'
diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/fixtures/product_seed.json b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/fixtures/product_seed.json
new file mode 100644
index 00000000..ee33f765
--- /dev/null
+++ b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/fixtures/product_seed.json
@@ -0,0 +1,26 @@
+[
+ {
+ "model": "product.product",
+ "id" : 1,
+ "fields":{
+ "product_name" : "Ultimate Experience",
+ "product_price" : 50000
+ }
+ },
+ {
+ "model": "product.product",
+ "id" : 2,
+ "fields":{
+ "product_name" : "Festival (Free Standing)",
+ "product_price" : 30000
+ }
+ },
+ {
+ "model": "product.product",
+ "id" : 3,
+ "fields":{
+ "product_name" : "Cat 8 (Numbered Seating)",
+ "product_price" : 10000
+ }
+ }
+]
diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/forms.py b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/forms.py
new file mode 100644
index 00000000..5eca825a
--- /dev/null
+++ b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/forms.py
@@ -0,0 +1,4 @@
+from django import forms
+
+class checkout(forms.Form):
+ pass
\ No newline at end of file
diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/home.html b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/home.html
new file mode 100644
index 00000000..db2e320e
--- /dev/null
+++ b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/home.html
@@ -0,0 +1,4 @@
+
+
+ this is home
+
\ No newline at end of file
diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/migrations/0001_initial.py b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/migrations/0001_initial.py
new file mode 100644
index 00000000..3d5ce76f
--- /dev/null
+++ b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/migrations/0001_initial.py
@@ -0,0 +1,40 @@
+# Generated by Django 3.2.19 on 2023-05-31 14:05
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ initial = True
+
+ dependencies = [
+ ]
+
+ operations = [
+ migrations.CreateModel(
+ name='Product',
+ fields=[
+ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('product_name', models.CharField(max_length=200)),
+ ('product_price', models.IntegerField()),
+ ],
+ ),
+ migrations.CreateModel(
+ name='Purchase',
+ fields=[
+ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('trx_date', models.DateTimeField(auto_now_add=True)),
+ ('coupon', models.IntegerField()),
+ ('user_id', models.CharField(max_length=200)),
+ ],
+ ),
+ migrations.CreateModel(
+ name='PurchaseDetail',
+ fields=[
+ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('purchase_id', models.CharField(max_length=200)),
+ ('product_id', models.CharField(max_length=200)),
+ ('qty', models.IntegerField()),
+ ],
+ ),
+ ]
diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/migrations/0002_auto_20230531_1543.py b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/migrations/0002_auto_20230531_1543.py
new file mode 100644
index 00000000..33cde02c
--- /dev/null
+++ b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/migrations/0002_auto_20230531_1543.py
@@ -0,0 +1,24 @@
+# Generated by Django 3.2.19 on 2023-05-31 15:43
+
+from django.db import migrations, models
+import django.db.models.deletion
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('product', '0001_initial'),
+ ]
+
+ operations = [
+ migrations.AlterField(
+ model_name='purchasedetail',
+ name='product_id',
+ field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='product.product'),
+ ),
+ migrations.AlterField(
+ model_name='purchasedetail',
+ name='purchase_id',
+ field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='product.purchase'),
+ ),
+ ]
diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/migrations/0003_purchase_amount.py b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/migrations/0003_purchase_amount.py
new file mode 100644
index 00000000..cb974d8f
--- /dev/null
+++ b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/migrations/0003_purchase_amount.py
@@ -0,0 +1,19 @@
+# Generated by Django 3.2.19 on 2023-05-31 21:06
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('product', '0002_auto_20230531_1543'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='purchase',
+ name='amount',
+ field=models.IntegerField(default=0),
+ preserve_default=False,
+ ),
+ ]
diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/migrations/__init__.py b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/migrations/__init__.py
new file mode 100644
index 00000000..e69de29b
diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/migrations/__pycache__/0001_initial.cpython-36.pyc b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/migrations/__pycache__/0001_initial.cpython-36.pyc
new file mode 100644
index 00000000..93712ed7
Binary files /dev/null and b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/migrations/__pycache__/0001_initial.cpython-36.pyc differ
diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/migrations/__pycache__/0002_auto_20230531_1543.cpython-36.pyc b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/migrations/__pycache__/0002_auto_20230531_1543.cpython-36.pyc
new file mode 100644
index 00000000..117d344f
Binary files /dev/null and b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/migrations/__pycache__/0002_auto_20230531_1543.cpython-36.pyc differ
diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/migrations/__pycache__/0003_purchase_amount.cpython-36.pyc b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/migrations/__pycache__/0003_purchase_amount.cpython-36.pyc
new file mode 100644
index 00000000..de4395fa
Binary files /dev/null and b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/migrations/__pycache__/0003_purchase_amount.cpython-36.pyc differ
diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/migrations/__pycache__/__init__.cpython-36.pyc b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/migrations/__pycache__/__init__.cpython-36.pyc
new file mode 100644
index 00000000..698d06ed
Binary files /dev/null and b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/migrations/__pycache__/__init__.cpython-36.pyc differ
diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/models.py b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/models.py
new file mode 100644
index 00000000..7c339892
--- /dev/null
+++ b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/models.py
@@ -0,0 +1,17 @@
+from django.db import models
+
+# Create your models here.
+class Purchase(models.Model):
+ trx_date = models.DateTimeField(auto_now_add=True)
+ coupon = models.IntegerField()
+ user_id = models.CharField(max_length=200)
+ amount = models.IntegerField()
+
+class PurchaseDetail(models.Model):
+ purchase_id = models.ForeignKey("Purchase", on_delete=models.CASCADE)
+ product_id = models.ForeignKey("Product", on_delete=models.CASCADE)
+ qty = models.IntegerField()
+
+class Product(models.Model):
+ product_name = models.CharField(max_length=200)
+ product_price = models.IntegerField()
diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/static/jquery-3.7.0.min.js b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/static/jquery-3.7.0.min.js
new file mode 100644
index 00000000..e7e29d5b
--- /dev/null
+++ b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/static/jquery-3.7.0.min.js
@@ -0,0 +1,2 @@
+/*! jQuery v3.7.0 | (c) OpenJS Foundation and other contributors | jquery.org/license */
+!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(ie,e){"use strict";var oe=[],r=Object.getPrototypeOf,ae=oe.slice,g=oe.flat?function(e){return oe.flat.call(e)}:function(e){return oe.concat.apply([],e)},s=oe.push,se=oe.indexOf,n={},i=n.toString,ue=n.hasOwnProperty,o=ue.toString,a=o.call(Object),le={},v=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},y=function(e){return null!=e&&e===e.window},C=ie.document,u={type:!0,src:!0,nonce:!0,noModule:!0};function m(e,t,n){var r,i,o=(n=n||C).createElement("script");if(o.text=e,t)for(r in u)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function x(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[i.call(e)]||"object":typeof e}var t="3.7.0",l=/HTML$/i,ce=function(e,t){return new ce.fn.init(e,t)};function c(e){var t=!!e&&"length"in e&&e.length,n=x(e);return!v(e)&&!y(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+ge+")"+ge+"*"),x=new RegExp(ge+"|>"),j=new RegExp(g),A=new RegExp("^"+t+"$"),D={ID:new RegExp("^#("+t+")"),CLASS:new RegExp("^\\.("+t+")"),TAG:new RegExp("^("+t+"|[*])"),ATTR:new RegExp("^"+p),PSEUDO:new RegExp("^"+g),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+ge+"*(even|odd|(([+-]|)(\\d*)n|)"+ge+"*(?:([+-]|)"+ge+"*(\\d+)|))"+ge+"*\\)|)","i"),bool:new RegExp("^(?:"+f+")$","i"),needsContext:new RegExp("^"+ge+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+ge+"*((?:-\\d)?\\d*)"+ge+"*\\)|)(?=[^-]|$)","i")},N=/^(?:input|select|textarea|button)$/i,q=/^h\d$/i,L=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,H=/[+~]/,O=new RegExp("\\\\[\\da-fA-F]{1,6}"+ge+"?|\\\\([^\\r\\n\\f])","g"),P=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},R=function(){V()},M=J(function(e){return!0===e.disabled&&fe(e,"fieldset")},{dir:"parentNode",next:"legend"});try{k.apply(oe=ae.call(ye.childNodes),ye.childNodes),oe[ye.childNodes.length].nodeType}catch(e){k={apply:function(e,t){me.apply(e,ae.call(t))},call:function(e){me.apply(e,ae.call(arguments,1))}}}function I(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(V(e),e=e||T,C)){if(11!==p&&(u=L.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return k.call(n,a),n}else if(f&&(a=f.getElementById(i))&&I.contains(e,a)&&a.id===i)return k.call(n,a),n}else{if(u[2])return k.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&e.getElementsByClassName)return k.apply(n,e.getElementsByClassName(i)),n}if(!(h[t+" "]||d&&d.test(t))){if(c=t,f=e,1===p&&(x.test(t)||m.test(t))){(f=H.test(t)&&z(e.parentNode)||e)==e&&le.scope||((s=e.getAttribute("id"))?s=ce.escapeSelector(s):e.setAttribute("id",s=S)),o=(l=Y(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+Q(l[o]);c=l.join(",")}try{return k.apply(n,f.querySelectorAll(c)),n}catch(e){h(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return re(t.replace(ve,"$1"),e,n,r)}function W(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function F(e){return e[S]=!0,e}function $(e){var t=T.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function B(t){return function(e){return fe(e,"input")&&e.type===t}}function _(t){return function(e){return(fe(e,"input")||fe(e,"button"))&&e.type===t}}function X(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&M(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function U(a){return F(function(o){return o=+o,F(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function z(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}function V(e){var t,n=e?e.ownerDocument||e:ye;return n!=T&&9===n.nodeType&&n.documentElement&&(r=(T=n).documentElement,C=!ce.isXMLDoc(T),i=r.matches||r.webkitMatchesSelector||r.msMatchesSelector,ye!=T&&(t=T.defaultView)&&t.top!==t&&t.addEventListener("unload",R),le.getById=$(function(e){return r.appendChild(e).id=ce.expando,!T.getElementsByName||!T.getElementsByName(ce.expando).length}),le.disconnectedMatch=$(function(e){return i.call(e,"*")}),le.scope=$(function(){return T.querySelectorAll(":scope")}),le.cssHas=$(function(){try{return T.querySelector(":has(*,:jqfake)"),!1}catch(e){return!0}}),le.getById?(b.filter.ID=function(e){var t=e.replace(O,P);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&C){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(O,P);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&C){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):t.querySelectorAll(e)},b.find.CLASS=function(e,t){if("undefined"!=typeof t.getElementsByClassName&&C)return t.getElementsByClassName(e)},d=[],$(function(e){var t;r.appendChild(e).innerHTML="",e.querySelectorAll("[selected]").length||d.push("\\["+ge+"*(?:value|"+f+")"),e.querySelectorAll("[id~="+S+"-]").length||d.push("~="),e.querySelectorAll("a#"+S+"+*").length||d.push(".#.+[+~]"),e.querySelectorAll(":checked").length||d.push(":checked"),(t=T.createElement("input")).setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),r.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&d.push(":enabled",":disabled"),(t=T.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||d.push("\\["+ge+"*name"+ge+"*="+ge+"*(?:''|\"\")")}),le.cssHas||d.push(":has"),d=d.length&&new RegExp(d.join("|")),l=function(e,t){if(e===t)return a=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!le.sortDetached&&t.compareDocumentPosition(e)===n?e===T||e.ownerDocument==ye&&I.contains(ye,e)?-1:t===T||t.ownerDocument==ye&&I.contains(ye,t)?1:o?se.call(o,e)-se.call(o,t):0:4&n?-1:1)}),T}for(e in I.matches=function(e,t){return I(e,null,null,t)},I.matchesSelector=function(e,t){if(V(e),C&&!h[t+" "]&&(!d||!d.test(t)))try{var n=i.call(e,t);if(n||le.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){h(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(O,P),e[3]=(e[3]||e[4]||e[5]||"").replace(O,P),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||I.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&I.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return D.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&j.test(n)&&(t=Y(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(O,P).toLowerCase();return"*"===e?function(){return!0}:function(e){return fe(e,t)}},CLASS:function(e){var t=s[e+" "];return t||(t=new RegExp("(^|"+ge+")"+e+"("+ge+"|$)"))&&s(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=I.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function T(e,n,r){return v(n)?ce.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?ce.grep(e,function(e){return e===n!==r}):"string"!=typeof n?ce.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(ce.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||k,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:S.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof ce?t[0]:t,ce.merge(this,ce.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:C,!0)),w.test(r[1])&&ce.isPlainObject(t))for(r in t)v(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=C.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):v(e)?void 0!==n.ready?n.ready(e):e(ce):ce.makeArray(e,this)}).prototype=ce.fn,k=ce(C);var E=/^(?:parents|prev(?:Until|All))/,j={children:!0,contents:!0,next:!0,prev:!0};function A(e,t){while((e=e[t])&&1!==e.nodeType);return e}ce.fn.extend({has:function(e){var t=ce(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,Ce=/^$|^module$|\/(?:java|ecma)script/i;xe=C.createDocumentFragment().appendChild(C.createElement("div")),(be=C.createElement("input")).setAttribute("type","radio"),be.setAttribute("checked","checked"),be.setAttribute("name","t"),xe.appendChild(be),le.checkClone=xe.cloneNode(!0).cloneNode(!0).lastChild.checked,xe.innerHTML="",le.noCloneChecked=!!xe.cloneNode(!0).lastChild.defaultValue,xe.innerHTML="",le.option=!!xe.lastChild;var ke={thead:[1,""],col:[2,""],tr:[2,""],td:[3,""],_default:[0,"",""]};function Se(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&fe(e,t)?ce.merge([e],n):n}function Ee(e,t){for(var n=0,r=e.length;n",""]);var je=/<|?\w+;/;function Ae(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function Me(e,t){return fe(e,"table")&&fe(11!==t.nodeType?t:t.firstChild,"tr")&&ce(e).children("tbody")[0]||e}function Ie(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function We(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Fe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(_.hasData(e)&&(s=_.get(e).events))for(i in _.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),C.head.appendChild(r[0])},abort:function(){i&&i()}}});var Jt,Kt=[],Zt=/(=)\?(?=&|$)|\?\?/;ce.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Kt.pop()||ce.expando+"_"+jt.guid++;return this[e]=!0,e}}),ce.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Zt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Zt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=v(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Zt,"$1"+r):!1!==e.jsonp&&(e.url+=(At.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||ce.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=ie[r],ie[r]=function(){o=arguments},n.always(function(){void 0===i?ce(ie).removeProp(r):ie[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Kt.push(r)),o&&v(i)&&i(o[0]),o=i=void 0}),"script"}),le.createHTMLDocument=((Jt=C.implementation.createHTMLDocument("").body).innerHTML="",2===Jt.childNodes.length),ce.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(le.createHTMLDocument?((r=(t=C.implementation.createHTMLDocument("")).createElement("base")).href=C.location.href,t.head.appendChild(r)):t=C),o=!n&&[],(i=w.exec(e))?[t.createElement(i[1])]:(i=Ae([e],t,o),o&&o.length&&ce(o).remove(),ce.merge([],i.childNodes)));var r,i,o},ce.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(ce.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},ce.expr.pseudos.animated=function(t){return ce.grep(ce.timers,function(e){return t===e.elem}).length},ce.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=ce.css(e,"position"),c=ce(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=ce.css(e,"top"),u=ce.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),v(t)&&(t=t.call(e,n,ce.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},ce.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){ce.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===ce.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===ce.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=ce(e).offset()).top+=ce.css(e,"borderTopWidth",!0),i.left+=ce.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-ce.css(r,"marginTop",!0),left:t.left-i.left-ce.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===ce.css(e,"position"))e=e.offsetParent;return e||J})}}),ce.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;ce.fn[t]=function(e){return R(this,function(e,t,n){var r;if(y(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),ce.each(["top","left"],function(e,n){ce.cssHooks[n]=Ye(le.pixelPosition,function(e,t){if(t)return t=Ge(e,n),_e.test(t)?ce(e).position()[n]+"px":t})}),ce.each({Height:"height",Width:"width"},function(a,s){ce.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){ce.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return R(this,function(e,t,n){var r;return y(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?ce.css(e,t,i):ce.style(e,t,n,i)},s,n?e:void 0,n)}})}),ce.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){ce.fn[t]=function(e){return this.on(t,e)}}),ce.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),ce.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){ce.fn[n]=function(e,t){return 0+~]|"+ge+")"+ge+"*"),b=new RegExp(ge+"|>"),A=new RegExp(g),D=new RegExp("^"+t+"$"),N={ID:new RegExp("^#("+t+")"),CLASS:new RegExp("^\\.("+t+")"),TAG:new RegExp("^("+t+"|[*])"),ATTR:new RegExp("^"+d),PSEUDO:new RegExp("^"+g),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+ge+"*(even|odd|(([+-]|)(\\d*)n|)"+ge+"*(?:([+-]|)"+ge+"*(\\d+)|))"+ge+"*\\)|)","i"),bool:new RegExp("^(?:"+f+")$","i"),needsContext:new RegExp("^"+ge+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+ge+"*((?:-\\d)?\\d*)"+ge+"*\\)|)(?=[^-]|$)","i")},L=/^(?:input|select|textarea|button)$/i,j=/^h\d$/i,O=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,P=/[+~]/,H=new RegExp("\\\\[\\da-fA-F]{1,6}"+ge+"?|\\\\([^\\r\\n\\f])","g"),q=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},R=function(){V()},M=K(function(e){return!0===e.disabled&&fe(e,"fieldset")},{dir:"parentNode",next:"legend"});try{E.apply(oe=ae.call(ye.childNodes),ye.childNodes),oe[ye.childNodes.length].nodeType}catch(e){E={apply:function(e,t){me.apply(e,ae.call(t))},call:function(e){me.apply(e,ae.call(arguments,1))}}}function I(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,d=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==d&&9!==d&&11!==d)return n;if(!r&&(V(e),e=e||T,C)){if(11!==d&&(u=O.exec(t)))if(i=u[1]){if(9===d){if(!(a=e.getElementById(i)))return n;if(a.id===i)return E.call(n,a),n}else if(f&&(a=f.getElementById(i))&&I.contains(e,a)&&a.id===i)return E.call(n,a),n}else{if(u[2])return E.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&e.getElementsByClassName)return E.apply(n,e.getElementsByClassName(i)),n}if(!(h[t+" "]||p&&p.test(t))){if(c=t,f=e,1===d&&(b.test(t)||m.test(t))){(f=P.test(t)&&X(e.parentNode)||e)==e&&le.scope||((s=e.getAttribute("id"))?s=ce.escapeSelector(s):e.setAttribute("id",s=k)),o=(l=Y(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+G(l[o]);c=l.join(",")}try{return E.apply(n,f.querySelectorAll(c)),n}catch(e){h(t,!0)}finally{s===k&&e.removeAttribute("id")}}}return re(t.replace(ve,"$1"),e,n,r)}function W(){var r=[];return function e(t,n){return r.push(t+" ")>x.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function B(e){return e[k]=!0,e}function F(e){var t=T.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function $(t){return function(e){return fe(e,"input")&&e.type===t}}function _(t){return function(e){return(fe(e,"input")||fe(e,"button"))&&e.type===t}}function z(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&M(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function U(a){return B(function(o){return o=+o,B(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function X(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}function V(e){var t,n=e?e.ownerDocument||e:ye;return n!=T&&9===n.nodeType&&n.documentElement&&(r=(T=n).documentElement,C=!ce.isXMLDoc(T),i=r.matches||r.webkitMatchesSelector||r.msMatchesSelector,ye!=T&&(t=T.defaultView)&&t.top!==t&&t.addEventListener("unload",R),le.getById=F(function(e){return r.appendChild(e).id=ce.expando,!T.getElementsByName||!T.getElementsByName(ce.expando).length}),le.disconnectedMatch=F(function(e){return i.call(e,"*")}),le.scope=F(function(){return T.querySelectorAll(":scope")}),le.cssHas=F(function(){try{return T.querySelector(":has(*,:jqfake)"),!1}catch(e){return!0}}),le.getById?(x.filter.ID=function(e){var t=e.replace(H,q);return function(e){return e.getAttribute("id")===t}},x.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&C){var n=t.getElementById(e);return n?[n]:[]}}):(x.filter.ID=function(e){var n=e.replace(H,q);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},x.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&C){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),x.find.TAG=function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):t.querySelectorAll(e)},x.find.CLASS=function(e,t){if("undefined"!=typeof t.getElementsByClassName&&C)return t.getElementsByClassName(e)},p=[],F(function(e){var t;r.appendChild(e).innerHTML="",e.querySelectorAll("[selected]").length||p.push("\\["+ge+"*(?:value|"+f+")"),e.querySelectorAll("[id~="+k+"-]").length||p.push("~="),e.querySelectorAll("a#"+k+"+*").length||p.push(".#.+[+~]"),e.querySelectorAll(":checked").length||p.push(":checked"),(t=T.createElement("input")).setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),r.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&p.push(":enabled",":disabled"),(t=T.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||p.push("\\["+ge+"*name"+ge+"*="+ge+"*(?:''|\"\")")}),le.cssHas||p.push(":has"),p=p.length&&new RegExp(p.join("|")),l=function(e,t){if(e===t)return a=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!le.sortDetached&&t.compareDocumentPosition(e)===n?e===T||e.ownerDocument==ye&&I.contains(ye,e)?-1:t===T||t.ownerDocument==ye&&I.contains(ye,t)?1:o?se.call(o,e)-se.call(o,t):0:4&n?-1:1)}),T}for(e in I.matches=function(e,t){return I(e,null,null,t)},I.matchesSelector=function(e,t){if(V(e),C&&!h[t+" "]&&(!p||!p.test(t)))try{var n=i.call(e,t);if(n||le.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){h(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(H,q),e[3]=(e[3]||e[4]||e[5]||"").replace(H,q),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||I.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&I.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return N.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&A.test(n)&&(t=Y(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(H,q).toLowerCase();return"*"===e?function(){return!0}:function(e){return fe(e,t)}},CLASS:function(e){var t=s[e+" "];return t||(t=new RegExp("(^|"+ge+")"+e+"("+ge+"|$)"))&&s(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=I.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function C(e,n,r){return v(n)?ce.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?ce.grep(e,function(e){return e===n!==r}):"string"!=typeof n?ce.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(ce.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||E,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:k.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof ce?t[0]:t,ce.merge(this,ce.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:m,!0)),T.test(r[1])&&ce.isPlainObject(t))for(r in t)v(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=m.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):v(e)?void 0!==n.ready?n.ready(e):e(ce):ce.makeArray(e,this)}).prototype=ce.fn,E=ce(m);var S=/^(?:parents|prev(?:Until|All))/,A={children:!0,contents:!0,next:!0,prev:!0};function D(e,t){while((e=e[t])&&1!==e.nodeType);return e}ce.fn.extend({has:function(e){var t=ce(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,Te=/^$|^module$|\/(?:java|ecma)script/i;re=m.createDocumentFragment().appendChild(m.createElement("div")),(be=m.createElement("input")).setAttribute("type","radio"),be.setAttribute("checked","checked"),be.setAttribute("name","t"),re.appendChild(be),le.checkClone=re.cloneNode(!0).cloneNode(!0).lastChild.checked,re.innerHTML="",le.noCloneChecked=!!re.cloneNode(!0).lastChild.defaultValue,re.innerHTML="",le.option=!!re.lastChild;var Ce={thead:[1,""],col:[2,""],tr:[2,""],td:[3,""],_default:[0,"",""]};function Ee(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&fe(e,t)?ce.merge([e],n):n}function ke(e,t){for(var n=0,r=e.length;n",""]);var Se=/<|?\w+;/;function Ae(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),d=[],p=0,h=e.length;p\s*$/g;function Re(e,t){return fe(e,"table")&&fe(11!==t.nodeType?t:t.firstChild,"tr")&&ce(e).children("tbody")[0]||e}function Me(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function Ie(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function We(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(_.hasData(e)&&(s=_.get(e).events))for(i in _.remove(t,"handle events"),s)for(n=0,r=s[i].length;n",2===yt.childNodes.length),ce.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(le.createHTMLDocument?((r=(t=m.implementation.createHTMLDocument("")).createElement("base")).href=m.location.href,t.head.appendChild(r)):t=m),o=!n&&[],(i=T.exec(e))?[t.createElement(i[1])]:(i=Ae([e],t,o),o&&o.length&&ce(o).remove(),ce.merge([],i.childNodes)));var r,i,o},ce.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=ce.css(e,"position"),c=ce(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=ce.css(e,"top"),u=ce.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),v(t)&&(t=t.call(e,n,ce.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},ce.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){ce.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===ce.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===ce.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=ce(e).offset()).top+=ce.css(e,"borderTopWidth",!0),i.left+=ce.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-ce.css(r,"marginTop",!0),left:t.left-i.left-ce.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===ce.css(e,"position"))e=e.offsetParent;return e||K})}}),ce.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;ce.fn[t]=function(e){return R(this,function(e,t,n){var r;if(y(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),ce.each(["top","left"],function(e,n){ce.cssHooks[n]=Qe(le.pixelPosition,function(e,t){if(t)return t=Ve(e,n),$e.test(t)?ce(e).position()[n]+"px":t})}),ce.each({Height:"height",Width:"width"},function(a,s){ce.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){ce.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return R(this,function(e,t,n){var r;return y(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?ce.css(e,t,i):ce.style(e,t,n,i)},s,n?e:void 0,n)}})}),ce.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),ce.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){ce.fn[n]=function(e,t){return 0
+ Back to Product
+
+ Purchase History
+
+
+
+
+ | Trx ID |
+ Trx Date |
+ Amount |
+ Coupon |
+ Status |
+
+
+
+ {% for purchase in history %}
+
+ | {{purchase.id}} |
+ {{purchase.trx_date}} |
+ {{purchase.amount}} |
+ {{purchase.coupon}} |
+
+ {{purchase.status}}
+ |
+
+ {% endfor %}
+
+
+
+
+
+{% endblock %}
diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/templates/login.html b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/templates/login.html
new file mode 100644
index 00000000..85a31326
--- /dev/null
+++ b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/templates/login.html
@@ -0,0 +1,7 @@
+{% extends "./main.html" %}
+{% block content %}
+
+{% endblock %}
diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/templates/logout.html b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/templates/logout.html
new file mode 100644
index 00000000..dc82eb8f
--- /dev/null
+++ b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/templates/logout.html
@@ -0,0 +1,5 @@
+{% extends "./main.html" %}
+{% block content %}
+You are logged out now. See you
+Back to Product
+{% endblock %}
diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/templates/main.html b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/templates/main.html
new file mode 100644
index 00000000..0c3a36c2
--- /dev/null
+++ b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/templates/main.html
@@ -0,0 +1,44 @@
+
+
+ {% load bootstrap5 %}
+ {% bootstrap_css %}
+ {% load static %}
+
+
+
+
+
+ {% if user.is_superuser and request.path == '/'%}
+
Pesan tiket coldplay di sini ya~
+ {% endif %}
+ {% block content %}
+ {% endblock content %}
+
+ {% bootstrap_javascript %}
+
+
+
+
+
\ No newline at end of file
diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/templates/product.html b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/templates/product.html
new file mode 100644
index 00000000..1e144c58
--- /dev/null
+++ b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/templates/product.html
@@ -0,0 +1,129 @@
+{% extends "./main.html" %}
+{% block content %}
+{% load static %}
+
+
+
+

+
+
Ultimate Experience
+
Rp 50,000
+
+
+
+
+
+
+

+
+
Festival (Free Standing)
+
Rp 30,000
+
+
+
+
+
+
+

+
+
Cat 8 (Numbered Seating)
+
Rp 10,000
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Item Name
+
Qty
+
Price
+
Total
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+{% endblock %}
diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/tests.py b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/tests.py
new file mode 100644
index 00000000..7ce503c2
--- /dev/null
+++ b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/views.py b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/views.py
new file mode 100644
index 00000000..34651bac
--- /dev/null
+++ b/Domains/FullStack/MiniProjects/Django Simple Web Cart/product/views.py
@@ -0,0 +1,76 @@
+from django.shortcuts import render
+from django.contrib.auth.decorators import login_required
+from django.contrib.auth.views import LoginView, LogoutView
+from django.http import HttpResponse
+from django.views.generic import TemplateView
+from django.views.decorators.csrf import csrf_exempt
+from django.shortcuts import redirect
+from .models import Purchase, PurchaseDetail, Product
+from django.http import JsonResponse
+from django.utils import timezone
+from django.views.decorators.cache import never_cache
+from datetime import datetime
+import json
+
+
+# Create your views here.
+def home(request):
+ return render(request, 'main.html')
+
+# def login(request):
+# return render(request, 'login.html')
+
+@login_required(login_url='/login/')
+def product(request):
+ return render(request, 'product.html')
+
+@never_cache
+@login_required(login_url='/login/')
+def history(request):
+ purchase = Purchase.objects.filter(user_id=request.user)
+ for row in purchase:
+ timedelta = timezone.now() - row.trx_date
+ timedelta_hrs = timedelta.total_seconds()/3600
+ if (timedelta_hrs > 3):
+ row.status = "Close"
+ else:
+ row.status = "Open"
+
+ return render(request, 'history.html', {'history': purchase})
+
+class LoginInterfaceView(LoginView):
+ template_name = 'login.html'
+
+class LogoutInterfaceView(LogoutView):
+ template_name = 'logout.html'
+
+
+
+# class HistoryView(TemplateView):
+# template_name = 'history.html'
+# extra_context={'history': Purchase.objects.all()}
+
+@csrf_exempt
+def checkout(request):
+ if request.method == "POST":
+ data = json.loads(request.body)
+
+ purchase = Purchase()
+ purchase.trx_date = timezone.now()
+ purchase.coupon = data.get("coupon")
+ purchase.amount = data.get("amount")
+ purchase.user_id = request.user
+ purchase.save()
+
+ cart = data.get("cart")
+
+ idx = 0
+ for item in cart:
+ detail = PurchaseDetail()
+ detail.purchase_id = Purchase.objects.get(id = purchase.id)
+ detail.product_id = Product.objects.get(id = idx+1)
+ detail.qty = cart[idx]
+ detail.save()
+ idx +=1
+
+ return JsonResponse({'success': True})
\ No newline at end of file
diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/readme.md b/Domains/FullStack/MiniProjects/Django Simple Web Cart/readme.md
new file mode 100644
index 00000000..30711cef
--- /dev/null
+++ b/Domains/FullStack/MiniProjects/Django Simple Web Cart/readme.md
@@ -0,0 +1,25 @@
+# Django Simple Web Cart
+**Contributor:** Tryxns
+
+## Description
+Simple Web Cart built on Django
+
+Setup Steps:
+1. Make sure your machines has installed Python3
+2. Extract the folder into the desired directory
+3. Open terminal, Enter the (extracted) folder directory via terminal
+4. run this command for installation, please wait it unntil complete:
+ pip install -r requirements.txt
+
+5. Run this command to initiate the Databases:
+ python manage.py migrate
+
+6. Run this command for seeding (fill DB with initial data) the DB:
+ python manage.py loaddata product_seed
+
+7. Run this command to start the local web server:
+ python manage.py runserver
+
+8. After previous step, the application supposed to be usable & callable with url & port (http://localhost:8000)
+You can get Available login account in file logins.txt
+
diff --git a/Domains/FullStack/MiniProjects/Django Simple Web Cart/requirements.txt b/Domains/FullStack/MiniProjects/Django Simple Web Cart/requirements.txt
new file mode 100644
index 00000000..a27a928a
--- /dev/null
+++ b/Domains/FullStack/MiniProjects/Django Simple Web Cart/requirements.txt
@@ -0,0 +1,10 @@
+asgiref==3.4.1
+beautifulsoup4==4.12.2
+Django==3.2.19
+django-bootstrap-v5==1.0.11
+importlib-metadata==4.8.3
+pytz==2023.3
+soupsieve==2.3.2.post1
+sqlparse==0.4.4
+typing_extensions==4.1.1
+zipp==3.6.0