Skip to content

Commit

Permalink
"Feat: Implement user authentication" (40 characters)
Browse files Browse the repository at this point in the history
  • Loading branch information
NexusGKSoftwares committed Dec 6, 2024
1 parent 516b06f commit bff04c9
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 3 deletions.
Binary file removed FreelancingIIITS-master.zip
Binary file not shown.
Binary file modified admin_panel/__pycache__/views.cpython-313.pyc
Binary file not shown.
4 changes: 3 additions & 1 deletion admin_panel/views.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
from django.shortcuts import render

from client.models import Feedback
from freelancer.models import Feedback



from .models import Activity, User, JobPosting, Payment, SystemHealth, SupportTicket

Expand Down
Binary file modified db.sqlite3
Binary file not shown.
Binary file modified freelancing_marketplace/__pycache__/settings.cpython-313.pyc
Binary file not shown.
Binary file modified freelancing_marketplace/__pycache__/urls.cpython-313.pyc
Binary file not shown.
1 change: 0 additions & 1 deletion freelancing_marketplace/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
'django.contrib.messages',
'django.contrib.staticfiles',
'admin_panel',
'client',
'freelancer',
]

Expand Down
2 changes: 1 addition & 1 deletion freelancing_marketplace/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from django.conf.urls.static import static
urlpatterns = [
path('admin/', admin.site.urls),
path('client/', include('client.urls')),

path('', include('freelancer.urls')),
path('admin_panel/', include('admin_panel.urls')),
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)

0 comments on commit bff04c9

Please sign in to comment.