├── .github └── workflows │ └── bookomatic.yml ├── .gitignore ├── BookOmatic ├── __init__.py ├── asgi.py ├── models │ ├── __init__.py │ ├── event.py │ ├── forgot_pw.py │ └── user.py ├── settings.py ├── urls.py ├── util │ ├── __init__.py │ └── check.py └── wsgi.py ├── CODE_OF_CONDUCT ├── Frontend ├── css │ ├── main.css │ └── main.css.map ├── img │ ├── account.svg │ ├── logo.svg │ ├── next.svg │ ├── prev.svg │ └── send.svg ├── index.html ├── main.scss └── web-design.xd ├── GETTING_STARTED.md ├── HowToContribute.md ├── LICENSE ├── README.md ├── calendarapp ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── templates │ └── calendarapp │ │ └── home.html ├── tests.py ├── urls.py └── views.py ├── eventbooking ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── tests.py └── views.py ├── manage.py ├── requirements.txt ├── static └── style.css ├── templates ├── account │ ├── login.html │ ├── logout.html │ ├── password_change.html │ ├── password_reset.html │ └── signup.html ├── base.html └── registration │ ├── logged_out.html │ ├── login.html │ ├── password_reset_complete.html │ ├── password_reset_confirm.html │ ├── password_reset_done.html │ ├── password_reset_email.html │ └── password_reset_form.html └── userprefs ├── __init__.py ├── admin.py ├── apps.py ├── migrations └── __init__.py ├── models.py ├── tests.py └── views.py /.github/workflows/bookomatic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/.github/workflows/bookomatic.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/.gitignore -------------------------------------------------------------------------------- /BookOmatic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BookOmatic/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/BookOmatic/asgi.py -------------------------------------------------------------------------------- /BookOmatic/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/BookOmatic/models/__init__.py -------------------------------------------------------------------------------- /BookOmatic/models/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/BookOmatic/models/event.py -------------------------------------------------------------------------------- /BookOmatic/models/forgot_pw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/BookOmatic/models/forgot_pw.py -------------------------------------------------------------------------------- /BookOmatic/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/BookOmatic/models/user.py -------------------------------------------------------------------------------- /BookOmatic/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/BookOmatic/settings.py -------------------------------------------------------------------------------- /BookOmatic/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/BookOmatic/urls.py -------------------------------------------------------------------------------- /BookOmatic/util/__init__.py: -------------------------------------------------------------------------------- 1 | from .check import * -------------------------------------------------------------------------------- /BookOmatic/util/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/BookOmatic/util/check.py -------------------------------------------------------------------------------- /BookOmatic/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/BookOmatic/wsgi.py -------------------------------------------------------------------------------- /CODE_OF_CONDUCT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/CODE_OF_CONDUCT -------------------------------------------------------------------------------- /Frontend/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/Frontend/css/main.css -------------------------------------------------------------------------------- /Frontend/css/main.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/Frontend/css/main.css.map -------------------------------------------------------------------------------- /Frontend/img/account.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/Frontend/img/account.svg -------------------------------------------------------------------------------- /Frontend/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/Frontend/img/logo.svg -------------------------------------------------------------------------------- /Frontend/img/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/Frontend/img/next.svg -------------------------------------------------------------------------------- /Frontend/img/prev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/Frontend/img/prev.svg -------------------------------------------------------------------------------- /Frontend/img/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/Frontend/img/send.svg -------------------------------------------------------------------------------- /Frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/Frontend/index.html -------------------------------------------------------------------------------- /Frontend/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/Frontend/main.scss -------------------------------------------------------------------------------- /Frontend/web-design.xd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/Frontend/web-design.xd -------------------------------------------------------------------------------- /GETTING_STARTED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/GETTING_STARTED.md -------------------------------------------------------------------------------- /HowToContribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/HowToContribute.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/README.md -------------------------------------------------------------------------------- /calendarapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /calendarapp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/calendarapp/admin.py -------------------------------------------------------------------------------- /calendarapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/calendarapp/apps.py -------------------------------------------------------------------------------- /calendarapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /calendarapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/calendarapp/models.py -------------------------------------------------------------------------------- /calendarapp/templates/calendarapp/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/calendarapp/templates/calendarapp/home.html -------------------------------------------------------------------------------- /calendarapp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/calendarapp/tests.py -------------------------------------------------------------------------------- /calendarapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/calendarapp/urls.py -------------------------------------------------------------------------------- /calendarapp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/calendarapp/views.py -------------------------------------------------------------------------------- /eventbooking/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eventbooking/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/eventbooking/admin.py -------------------------------------------------------------------------------- /eventbooking/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/eventbooking/apps.py -------------------------------------------------------------------------------- /eventbooking/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eventbooking/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/eventbooking/models.py -------------------------------------------------------------------------------- /eventbooking/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/eventbooking/tests.py -------------------------------------------------------------------------------- /eventbooking/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- 1 | .mgt 2 | { 3 | margin-top:20px; 4 | } -------------------------------------------------------------------------------- /templates/account/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/templates/account/login.html -------------------------------------------------------------------------------- /templates/account/logout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/templates/account/logout.html -------------------------------------------------------------------------------- /templates/account/password_change.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/templates/account/password_change.html -------------------------------------------------------------------------------- /templates/account/password_reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/templates/account/password_reset.html -------------------------------------------------------------------------------- /templates/account/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/templates/account/signup.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/registration/logged_out.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/templates/registration/logged_out.html -------------------------------------------------------------------------------- /templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/templates/registration/login.html -------------------------------------------------------------------------------- /templates/registration/password_reset_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/templates/registration/password_reset_complete.html -------------------------------------------------------------------------------- /templates/registration/password_reset_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/templates/registration/password_reset_confirm.html -------------------------------------------------------------------------------- /templates/registration/password_reset_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/templates/registration/password_reset_done.html -------------------------------------------------------------------------------- /templates/registration/password_reset_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/templates/registration/password_reset_email.html -------------------------------------------------------------------------------- /templates/registration/password_reset_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/templates/registration/password_reset_form.html -------------------------------------------------------------------------------- /userprefs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /userprefs/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/userprefs/admin.py -------------------------------------------------------------------------------- /userprefs/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/userprefs/apps.py -------------------------------------------------------------------------------- /userprefs/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /userprefs/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/userprefs/models.py -------------------------------------------------------------------------------- /userprefs/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/BookOmatic/HEAD/userprefs/tests.py -------------------------------------------------------------------------------- /userprefs/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | --------------------------------------------------------------------------------