From aaf2b15de708b191b3eaae873b2938e190748e97 Mon Sep 17 00:00:00 2001 From: Your Name Date: Wed, 17 Nov 2021 20:36:47 +0200 Subject: [PATCH] Initial commit --- .gitignore | 116 ++++++++++++++++ .idea/.gitignore | 8 ++ .../inspectionProfiles/profiles_settings.xml | 6 + .idea/lu_django_1.iml | 30 ++++ .idea/misc.xml | 4 + .idea/modules.xml | 8 ++ .idea/vcs.xml | 6 + lu_django_1/__init__.py | 0 lu_django_1/asgi.py | 16 +++ lu_django_1/settings.py | 130 ++++++++++++++++++ lu_django_1/urls.py | 26 ++++ lu_django_1/wsgi.py | 16 +++ manage.py | 22 +++ templates/visit.html | 14 ++ templates/visit_form.html | 14 ++ templates/visits.html | 20 +++ uzdevumi/__init__.py | 0 uzdevumi/admin.py | 10 ++ uzdevumi/apps.py | 6 + uzdevumi/forms.py | 12 ++ uzdevumi/migrations/0001_initial.py | 23 ++++ uzdevumi/migrations/__init__.py | 0 uzdevumi/models.py | 8 ++ uzdevumi/tests.py | 3 + uzdevumi/views.py | 60 ++++++++ 25 files changed, 558 insertions(+) create mode 100644 .gitignore create mode 100644 .idea/.gitignore create mode 100644 .idea/inspectionProfiles/profiles_settings.xml create mode 100644 .idea/lu_django_1.iml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml create mode 100644 lu_django_1/__init__.py create mode 100644 lu_django_1/asgi.py create mode 100644 lu_django_1/settings.py create mode 100644 lu_django_1/urls.py create mode 100644 lu_django_1/wsgi.py create mode 100644 manage.py create mode 100644 templates/visit.html create mode 100644 templates/visit_form.html create mode 100644 templates/visits.html create mode 100644 uzdevumi/__init__.py create mode 100644 uzdevumi/admin.py create mode 100644 uzdevumi/apps.py create mode 100644 uzdevumi/forms.py create mode 100644 uzdevumi/migrations/0001_initial.py create mode 100644 uzdevumi/migrations/__init__.py create mode 100644 uzdevumi/models.py create mode 100644 uzdevumi/tests.py create mode 100644 uzdevumi/views.py diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7b32bc6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,116 @@ +# Django # +*.log +*.pot +*.pyc +__pycache__ +db.sqlite3 +media + +# Backup files # +*.bak + +# If you are using PyCharm # +.idea/**/workspace.xml +.idea/**/tasks.xml +.idea/dictionaries +.idea/**/dataSources/ +.idea/**/dataSources.ids +.idea/**/dataSources.xml +.idea/**/dataSources.local.xml +.idea/**/sqlDataSources.xml +.idea/**/dynamic.xml +.idea/**/uiDesigner.xml +.idea/**/gradle.xml +.idea/**/libraries +*.iws /out/ + +# Python # +*.py[cod] +*$py.class + +# Distribution / packaging +.Python build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.coverage.* +.cache +.pytest_cache/ +nosetests.xml +coverage.xml +*.cover +.hypothesis/ + +# Jupyter Notebook +.ipynb_checkpoints + +# pyenv +.python-version + +# celery +celerybeat-schedule.* + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ + +# Sublime Text # +*.tmlanguage.cache +*.tmPreferences.cache +*.stTheme.cache +*.sublime-workspace +*.sublime-project + +# sftp configuration file +sftp-config.json + +# Package control specific files Package +Control.last-run +Control.ca-list +Control.ca-bundle +Control.system-ca-bundle +GitHub.sublime-settings + +# Visual Studio Code # +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +.history \ No newline at end of file diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..73f69e0 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..105ce2d --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/lu_django_1.iml b/.idea/lu_django_1.iml new file mode 100644 index 0000000..5346471 --- /dev/null +++ b/.idea/lu_django_1.iml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..c0dbf4f --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..e6bf419 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/lu_django_1/__init__.py b/lu_django_1/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/lu_django_1/asgi.py b/lu_django_1/asgi.py new file mode 100644 index 0000000..eadb82a --- /dev/null +++ b/lu_django_1/asgi.py @@ -0,0 +1,16 @@ +""" +ASGI config for lu_django_1 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', 'lu_django_1.settings') + +application = get_asgi_application() diff --git a/lu_django_1/settings.py b/lu_django_1/settings.py new file mode 100644 index 0000000..0ee7094 --- /dev/null +++ b/lu_django_1/settings.py @@ -0,0 +1,130 @@ +""" +Django settings for lu_django_1 project. + +Generated by 'django-admin startproject' using Django 3.2.8. + +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-hubq#k5jq^veb5@1l=gu!)j7dbv3oi7d6l+!0sei7+q&td4qe2' + +# SECURITY WARNING: don't run with debug turned on in production! +DEBUG = True + +ALLOWED_HOSTS = [ + '91.105.66.240', + '127.0.0.1' +] + + +# Application definition + +INSTALLED_APPS = [ + 'django.contrib.admin', + 'django.contrib.auth', + 'django.contrib.contenttypes', + 'django.contrib.sessions', + 'django.contrib.messages', + 'django.contrib.staticfiles', + 'uzdevumi.apps.UzdevumiConfig', +] + +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 = 'lu_django_1.urls' + +TEMPLATES = [ + { + 'BACKEND': 'django.template.backends.django.DjangoTemplates', + 'DIRS': [BASE_DIR / 'templates'] + , + '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 = 'lu_django_1.wsgi.application' + + +# 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 = 'UTC' + +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' diff --git a/lu_django_1/urls.py b/lu_django_1/urls.py new file mode 100644 index 0000000..edc11f7 --- /dev/null +++ b/lu_django_1/urls.py @@ -0,0 +1,26 @@ +"""lu_django_1 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 + +import uzdevumi.views + +urlpatterns = [ + path('admin/', admin.site.urls), + path('add-visit', uzdevumi.views.add_visit), + path('visit/', uzdevumi.views.get_visit, name='get-visit'), + path('', uzdevumi.views.get_all_visits), +] diff --git a/lu_django_1/wsgi.py b/lu_django_1/wsgi.py new file mode 100644 index 0000000..628737e --- /dev/null +++ b/lu_django_1/wsgi.py @@ -0,0 +1,16 @@ +""" +WSGI config for lu_django_1 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', 'lu_django_1.settings') + +application = get_wsgi_application() diff --git a/manage.py b/manage.py new file mode 100644 index 0000000..700a721 --- /dev/null +++ b/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', 'lu_django_1.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/templates/visit.html b/templates/visit.html new file mode 100644 index 0000000..a00feae --- /dev/null +++ b/templates/visit.html @@ -0,0 +1,14 @@ + + + + + {{ visitor }}'s visit + + +

+ {{ visit.visitor }} will arrive at {{ visit.date_time }}
+ Reason: {{ visit.reason }} +

+ + + \ No newline at end of file diff --git a/templates/visit_form.html b/templates/visit_form.html new file mode 100644 index 0000000..4d8dfd8 --- /dev/null +++ b/templates/visit_form.html @@ -0,0 +1,14 @@ + + + + + New visit + + +
+ {% csrf_token %} + {{ form.as_p }} + +
+ + \ No newline at end of file diff --git a/templates/visits.html b/templates/visits.html new file mode 100644 index 0000000..9de233e --- /dev/null +++ b/templates/visits.html @@ -0,0 +1,20 @@ + + + + + Users + + + + + \ No newline at end of file diff --git a/uzdevumi/__init__.py b/uzdevumi/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/uzdevumi/admin.py b/uzdevumi/admin.py new file mode 100644 index 0000000..b171d7d --- /dev/null +++ b/uzdevumi/admin.py @@ -0,0 +1,10 @@ +from django.contrib import admin + +from .models import Visit + + +class VisitAdmin(admin.ModelAdmin): + pass + + +admin.site.register(Visit, VisitAdmin) \ No newline at end of file diff --git a/uzdevumi/apps.py b/uzdevumi/apps.py new file mode 100644 index 0000000..a58f56f --- /dev/null +++ b/uzdevumi/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class UzdevumiConfig(AppConfig): + default_auto_field = 'django.db.models.BigAutoField' + name = 'uzdevumi' diff --git a/uzdevumi/forms.py b/uzdevumi/forms.py new file mode 100644 index 0000000..11355d6 --- /dev/null +++ b/uzdevumi/forms.py @@ -0,0 +1,12 @@ +from django.forms import ( + Form, + CharField, + DateTimeField, +) + + +class VisitForm(Form): + + visitor = CharField() + date_time = DateTimeField() + reason = CharField() diff --git a/uzdevumi/migrations/0001_initial.py b/uzdevumi/migrations/0001_initial.py new file mode 100644 index 0000000..09a72c9 --- /dev/null +++ b/uzdevumi/migrations/0001_initial.py @@ -0,0 +1,23 @@ +# Generated by Django 3.2.8 on 2021-11-10 17:14 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + initial = True + + dependencies = [ + ] + + operations = [ + migrations.CreateModel( + name='Visit', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('visitor', models.CharField(max_length=100)), + ('date_time', models.DateTimeField()), + ('reason', models.CharField(max_length=140)), + ], + ), + ] diff --git a/uzdevumi/migrations/__init__.py b/uzdevumi/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/uzdevumi/models.py b/uzdevumi/models.py new file mode 100644 index 0000000..f0f1287 --- /dev/null +++ b/uzdevumi/models.py @@ -0,0 +1,8 @@ +from django.db import models + + +class Visit(models.Model): + + visitor = models.CharField(max_length=100) + reason = models.CharField(max_length=140) + date_time = models.DateTimeField() diff --git a/uzdevumi/tests.py b/uzdevumi/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/uzdevumi/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/uzdevumi/views.py b/uzdevumi/views.py new file mode 100644 index 0000000..ffc3e72 --- /dev/null +++ b/uzdevumi/views.py @@ -0,0 +1,60 @@ +from django.shortcuts import render +from django.http import HttpResponse + +from .forms import VisitForm +from .models import Visit + + +def get_all_visits(request): + + visits = Visit.objects.all() + + context = { + 'visits': visits, + } + + return render( + request, + template_name='visits.html', + context=context, + ) + + +def get_visit(request, visit_id): + + visit = Visit.objects.get(id=visit_id) + + return HttpResponse(visit_id) + + +def add_visit(request): + + form = VisitForm(request.POST or None) + + if request.method == 'POST': + + if form.is_valid(): + + visit = Visit( + visitor=form.cleaned_data['visitor'], + reason=form.cleaned_data['reason'], + date_time=form.cleaned_data['date_time'], + ) + + visit.save() + + context = { + 'visit': visit, + } + + return render( + request, + template_name='visit.html', + context=context, + ) + + return render( + request, + template_name='visit_form.html', + context={'form': form} + )