Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Binary file not shown.
Binary file modified LaundrYours/accounts/__pycache__/__init__.cpython-39.pyc
Binary file not shown.
Binary file not shown.
Binary file modified LaundrYours/accounts/__pycache__/admin.cpython-39.pyc
Binary file not shown.
Binary file added LaundrYours/accounts/__pycache__/apps.cpython-38.pyc
Binary file not shown.
Binary file modified LaundrYours/accounts/__pycache__/apps.cpython-39.pyc
Binary file not shown.
Binary file not shown.
Binary file modified LaundrYours/accounts/__pycache__/models.cpython-39.pyc
Binary file not shown.
Binary file added LaundrYours/accounts/__pycache__/urls.cpython-38.pyc
Binary file not shown.
Binary file modified LaundrYours/accounts/__pycache__/urls.cpython-39.pyc
Binary file not shown.
Binary file not shown.
Binary file modified LaundrYours/accounts/__pycache__/views.cpython-39.pyc
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified LaundrYours/db.sqlite3
Binary file not shown.
Binary file added LaundrYours/images/cotton.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file modified LaundrYours/laundryours/__pycache__/__init__.cpython-39.pyc
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified LaundrYours/laundryours/__pycache__/settings.cpython-39.pyc
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified LaundrYours/laundryours/__pycache__/urls.cpython-39.pyc
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified LaundrYours/laundryours/__pycache__/wsgi.cpython-39.pyc
Binary file not shown.
2 changes: 1 addition & 1 deletion LaundrYours/laundryours/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [],
'DIRS':[BASE_DIR / 'templates'],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
Expand Down
5 changes: 3 additions & 2 deletions LaundrYours/laundryours/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,11 @@
from django.contrib import admin
from django.urls import path, include
import accounts.views
import search.views
from search.views import *

urlpatterns = [
path('admin/', admin.site.urls),
path('', search.views.home, name="home"),
path('', home, name="home"),
path('accounts/', include('accounts.urls')),
path('', fiberResult, name="fiberResult"),
]
21 changes: 21 additions & 0 deletions LaundrYours/node_modules/vue/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

386 changes: 386 additions & 0 deletions LaundrYours/node_modules/vue/README.md

Large diffs are not rendered by default.

122 changes: 122 additions & 0 deletions LaundrYours/node_modules/vue/dist/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading