···11+# Byte-compiled / optimized / DLL files
22+__pycache__/
33+*.py[cod]
44+*$py.class
55+66+# C extensions
77+*.so
88+99+# Distribution / packaging
1010+.Python
1111+build/
1212+develop-eggs/
1313+dist/
1414+downloads/
1515+eggs/
1616+.eggs/
1717+lib/
1818+lib64/
1919+parts/
2020+sdist/
2121+var/
2222+wheels/
2323+share/python-wheels/
2424+*.egg-info/
2525+.installed.cfg
2626+*.egg
2727+MANIFEST
2828+2929+# PyInstaller
3030+# Usually these files are written by a python script from a template
3131+# before PyInstaller builds the exe, so as to inject date/other infos into it.
3232+*.manifest
3333+*.spec
3434+3535+# Installer logs
3636+pip-log.txt
3737+pip-delete-this-directory.txt
3838+3939+# Unit test / coverage reports
4040+htmlcov/
4141+.tox/
4242+.nox/
4343+.coverage
4444+.coverage.*
4545+.cache
4646+nosetests.xml
4747+coverage.xml
4848+*.cover
4949+*.py,cover
5050+.hypothesis/
5151+.pytest_cache/
5252+cover/
5353+5454+# Translations
5555+*.mo
5656+*.pot
5757+5858+# Django stuff:
5959+*.log
6060+local_settings.py
6161+db.sqlite3
6262+db.sqlite3-journal
6363+6464+# Flask stuff:
6565+instance/
6666+.webassets-cache
6767+6868+# Scrapy stuff:
6969+.scrapy
7070+7171+# Sphinx documentation
7272+docs/_build/
7373+7474+# PyBuilder
7575+.pybuilder/
7676+target/
7777+7878+# Jupyter Notebook
7979+.ipynb_checkpoints
8080+8181+# IPython
8282+profile_default/
8383+ipython_config.py
8484+8585+# pyenv
8686+# For a library or package, you might want to ignore these files since the code is
8787+# intended to run in multiple environments; otherwise, check them in:
8888+# .python-version
8989+9090+# pipenv
9191+# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
9292+# However, in case of collaboration, if having platform-specific dependencies or dependencies
9393+# having no cross-platform support, pipenv may install dependencies that don't work, or not
9494+# install all needed dependencies.
9595+#Pipfile.lock
9696+9797+# poetry
9898+# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
9999+# This is especially recommended for binary packages to ensure reproducibility, and is more
100100+# commonly ignored for libraries.
101101+# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
102102+#poetry.lock
103103+104104+# pdm
105105+# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
106106+#pdm.lock
107107+# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
108108+# in version control.
109109+# https://pdm.fming.dev/#use-with-ide
110110+.pdm.toml
111111+112112+# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
113113+__pypackages__/
114114+115115+# Celery stuff
116116+celerybeat-schedule
117117+celerybeat.pid
118118+119119+# SageMath parsed files
120120+*.sage.py
121121+122122+# Environments
123123+.env
124124+.venv
125125+env/
126126+venv/
127127+ENV/
128128+env.bak/
129129+venv.bak/
130130+131131+# Spyder project settings
132132+.spyderproject
133133+.spyproject
134134+135135+# Rope project settings
136136+.ropeproject
137137+138138+# mkdocs documentation
139139+/site
140140+141141+# mypy
142142+.mypy_cache/
143143+.dmypy.json
144144+dmypy.json
145145+146146+# Pyre type checker
147147+.pyre/
148148+149149+# pytype static type analyzer
150150+.pytype/
151151+152152+# Cython debug symbols
153153+cython_debug/
154154+node_modules
155155+156156+157157+static/admin
158158+static/colorfield
···11+"""
22+ASGI config for paw project.
33+44+It exposes the ASGI callable as a module-level variable named ``application``.
55+66+For more information on this file, see
77+https://docs.djangoproject.com/en/5.0/howto/deployment/asgi/
88+"""
99+1010+import os
1111+1212+from django.core.asgi import get_asgi_application
1313+1414+os.environ.setdefault("DJANGO_SETTINGS_MODULE", "paw.settings")
1515+1616+application = get_asgi_application()
+35
paw/locale/en/LC_MESSAGES/django.po
···11+# SOME DESCRIPTIVE TITLE.
22+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
33+# This file is distributed under the same license as the PACKAGE package.
44+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55+#
66+#, fuzzy
77+msgid ""
88+msgstr ""
99+"Project-Id-Version: PACKAGE VERSION\n"
1010+"Report-Msgid-Bugs-To: \n"
1111+"POT-Creation-Date: 2024-03-07 15:10+0100\n"
1212+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1414+"Language-Team: LANGUAGE <LL@li.org>\n"
1515+"Language: \n"
1616+"MIME-Version: 1.0\n"
1717+"Content-Type: text/plain; charset=UTF-8\n"
1818+"Content-Transfer-Encoding: 8bit\n"
1919+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
2020+2121+#: paw/settings.py:114
2222+msgid "English"
2323+msgstr "English"
2424+2525+#: paw/settings.py:115
2626+msgid "French"
2727+msgstr "French"
2828+2929+#: paw/settings.py:116
3030+msgid "German"
3131+msgstr "German"
3232+3333+#: paw/templates/core/settings.html:6
3434+msgid "SettingsHeading"
3535+msgstr "Settings"
···11+"""
22+URL configuration for paw project.
33+44+The `urlpatterns` list routes URLs to views. For more information please see:
55+ https://docs.djangoproject.com/en/5.0/topics/http/urls/
66+Examples:
77+Function views
88+ 1. Add an import: from my_app import views
99+ 2. Add a URL to urlpatterns: path('', views.home, name='home')
1010+Class-based views
1111+ 1. Add an import: from other_app.views import Home
1212+ 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
1313+Including another URLconf
1414+ 1. Import the include() function: from django.urls import include, path
1515+ 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
1616+"""
1717+from django.conf import settings
1818+from django.contrib import admin
1919+from django.urls import path, include
2020+from django.conf.urls.static import static
2121+2222+urlpatterns = [
2323+ path('i18n/', include('django.conf.urls.i18n')),
2424+ path("admin/", admin.site.urls),
2525+ path("accounts/", include("django.contrib.auth.urls")),
2626+ path("", include("core.urls")),
2727+ path("", include("ticketing.urls")),
2828+] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
+16
paw/wsgi.py
···11+"""
22+WSGI config for paw project.
33+44+It exposes the WSGI callable as a module-level variable named ``application``.
55+66+For more information on this file, see
77+https://docs.djangoproject.com/en/5.0/howto/deployment/wsgi/
88+"""
99+1010+import os
1111+1212+from django.core.wsgi import get_wsgi_application
1313+1414+os.environ.setdefault("DJANGO_SETTINGS_MODULE", "paw.settings")
1515+1616+application = get_wsgi_application()